forked from etr/libhttpserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
58 lines (54 loc) · 1.62 KB
/
appveyor.yml
File metadata and controls
58 lines (54 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
version: 2.2.0.{build}
os: Visual Studio 2015
branches:
except:
- /.*travis.*/
skip_commits:
message: /travis/
files:
- .travis.yml
environment:
global:
EVENT_TESTS_PARALLEL: 20
EVENT_BUILD_PARALLEL: 10
CYG_ROOT: C:/MinGW/msys/1.0
matrix:
- Platform: Cygwin32
- Platform: MinGW32
PlatformToolset: 4.8.5
- Platform: MinGW64
PlatformToolset: 4.8.5
- Platform: MinGW32
PlatformToolset: 5.3.0
- Platform: MinGW64
PlatformToolset: 5.3.0
- Platform: Win32
PlatformToolset: v90
- Platform: Win32
PlatformToolset: v100
- Platform: Win32
PlatformToolset: v110
- Platform: Win32
PlatformToolset: v120
- Platform: Win32
PlatformToolset: v140
- Platform: x64
PlatformToolset: v140
matrix:
allow_failures:
- EVENT_ALLOW_FAILURE: 1
init:
- 'echo Building libhttpserver %version% for Windows'
- 'echo System architecture: %PLATFORM%'
- 'echo Repo build branch is: %APPVEYOR_REPO_BRANCH%'
- 'echo Build folder is: %APPVEYOR_BUILD_FOLDER%'
- 'echo Repo build commit is: %APPVEYOR_REPO_COMMIT%'
- 'echo Cygwin root is: %CYG_ROOT%'
install:
- C:\MinGW\bin\mingw-get install gcc g++ autotools autoconf automake msys-base msys-m4
build_script:
- ps: |
$env:PATH="$env;C:\MinGW\msys\1.0\bin;C:\CYG_ROOT\bin;C:\MinGW\bin;$($env:PATH)"
bash -lc "echo 'C:\MinGW /mingw' > /etc/fstab"
$env:APPVEYOR_BUILD_FOLDER = $env:APPVEYOR_BUILD_FOLDER -replace "\\", "/"
bash -lc "exec 0</dev/null; exec 2>&1; cd $env:APPVEYOR_BUILD_FOLDER; bash -x ./bootstrap && mkdir -p build && cd build && ../configure && make"