Actually I believe this should be an EINVAL.
[tor.git] / .appveyor.yml
blob9913bf3bd9fd3579a2313344d7f239fe2df6e23f
1 version: 1.0.{build}
3 clone_depth: 50
5 # Appveyor images are named after the Visual Studio version they contain.
6 # But we compile using MinGW, not Visual Studio.
7 # We use these images because they have different Windows versions.
8 image:
9   # Windows Server 2016
10   - Visual Studio 2017
11   # Windows Server 2012 R2
12   - Visual Studio 2015
14 environment:
15   compiler: mingw
17   matrix:
18   - target: i686-w64-mingw32
19     compiler_path: mingw32
20     mingw_prefix: mingw-w64-i686
21     hardening:
22   - target: x86_64-w64-mingw32
23     compiler_path: mingw64
24     mingw_prefix: mingw-w64-x86_64
25     # hardening doesn't work with mingw-w64-x86_64-gcc, because it's gcc 8
26     hardening: --disable-gcc-hardening
28 matrix:
29   # Don't keep building failing jobs
30   fast_finish: true
31   # Skip the 32-bit Windows Server 2016 job, and the 64-bit Windows Server
32   # 2012 R2 job, to speed up the build.
33   # The environment variables must be listed without the 'environment' tag.
34   exclude:
35     - image: Visual Studio 2017
36       target: i686-w64-mingw32
37       compiler_path: mingw32
38       mingw_prefix: mingw-w64-i686
39       hardening:
40     - image: Visual Studio 2015
41       target: x86_64-w64-mingw32
42       compiler_path: mingw64
43       mingw_prefix: mingw-w64-x86_64
44       # hardening doesn't work with mingw-w64-x86_64-gcc, because it's gcc 8
45       hardening: --disable-gcc-hardening
47 install:
48 - ps: >-
49     Function Execute-Command ($commandPath)
50     {
51         & $commandPath $args 2>&1
52         if ( $LastExitCode -ne 0 ) {
53             $host.SetShouldExit( $LastExitCode )
54         }
55     }
56     Function Execute-Bash ()
57     {
58         Execute-Command 'c:\msys64\usr\bin\bash' '-e' '-c' $args
59     }
60     <# mingw packages start with ${env:mingw_prefix}
61      # unprefixed packages are from MSYS2, which is like Cygwin. Avoid them.
62      #
63      # Use pacman --debug to show package downloads and install locations
64      #>
65     Execute-Command "C:\msys64\usr\bin\pacman" -Sy --verbose --needed --noconfirm ${env:mingw_prefix}-libevent ${env:mingw_prefix}-pkg-config ${env:mingw_prefix}-xz ${env:mingw_prefix}-zstd ;
67 build_script:
68 - ps: >-
69     if ($env:compiler -eq "mingw") {
70             <# use the MSYS2 compiler and user binaries to build and install #>
71             $oldpath = ${env:Path} -split ';'
72             $buildpath = @("C:\msys64\${env:compiler_path}\bin", "C:\msys64\usr\bin") + $oldpath
73             $env:Path = @($buildpath) -join ';'
74             $env:build = @("${env:APPVEYOR_BUILD_FOLDER}", $env:target) -join '\'
75             Set-Location "${env:APPVEYOR_BUILD_FOLDER}"
76             Execute-Bash 'autoreconf -i'
77             mkdir "${env:build}"
78             Set-Location "${env:build}"
79             Execute-Bash "which ${env:target}-gcc"
80             Execute-Bash "${env:target}-gcc --version"
81             <# compile for mingw
82              # mingw zstd doesn't come with a pkg-config file, so we manually
83              # configure its flags. liblzma just works.
84              #>
85             Execute-Bash "ZSTD_CFLAGS='-L/${env:compiler_path}/include' ZSTD_LIBS='-L/${env:compiler_path}/lib -lzstd' ../configure --prefix=/${env:compiler_path} --build=${env:target} --host=${env:target} --with-openssl-dir=/${env:compiler_path} --disable-asciidoc --enable-fatal-warnings ${env:hardening}"
86             Execute-Bash "V=1 make -j2"
87             Execute-Bash "V=1 make -j2 install"
88      }
90 test_script:
91 - ps: >-
92     if ($env:compiler -eq "mingw") {
93             <# use the MSYS2 compiler binaries to make check #>
94             $oldpath = ${env:Path} -split ';'
95             $buildpath = @("C:\msys64\${env:compiler_path}\bin") + $oldpath
96             $env:Path = $buildpath -join ';'
97             Set-Location "${env:build}"
98             Execute-Bash "VERBOSE=1 make -j2 check"
99     }
101 on_finish:
102 - ps: >-
103     if ($env:compiler -eq "mingw") {
104             <# use the MSYS2 user binaries to archive failures #>
105             $oldpath = ${env:Path} -split ';'
106             $buildpath = @("C:\msys64\usr\bin") + $oldpath
107             $env:Path = @($buildpath) -join ';'
108             Set-Location "${env:build}"
109             <# store logs as appveyor artifacts: see the artifacts tab #>
110             Execute-Bash "7z a logs.zip config.log || true"
111             Execute-Bash "7z a logs.zip test-suite.log || true"
112             Execute-Bash "appveyor PushArtifact logs.zip || true"
113             Execute-Bash "tail -1000 config.log || true"
114             Execute-Bash "cat test-suite.log || true"
115     }
117 # notify the IRC channel of any failures
118 on_failure:
119 - cmd: C:\Python27\python.exe %APPVEYOR_BUILD_FOLDER%\scripts\test\appveyor-irc-notify.py irc.oftc.net:6697 tor-ci failure