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.
11 # Windows Server 2012 R2
18 - target: i686-w64-mingw32
19 compiler_path: mingw32
20 mingw_prefix: mingw-w64-i686
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
29 # Don't keep building failing jobs
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.
35 - image: Visual Studio 2017
36 target: i686-w64-mingw32
37 compiler_path: mingw32
38 mingw_prefix: mingw-w64-i686
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
49 Function Execute-Command ($commandPath)
51 & $commandPath $args 2>&1
52 if ( $LastExitCode -ne 0 ) {
53 $host.SetShouldExit( $LastExitCode )
56 Function Execute-Bash ()
58 Execute-Command 'c:\msys64\usr\bin\bash' '-e' '-c' $args
60 <# mingw packages start with ${env:mingw_prefix}
61 # unprefixed packages are from MSYS2, which is like Cygwin. Avoid them.
63 # Use pacman --debug to show package downloads and install locations
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 ;
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'
78 Set-Location "${env:build}"
79 Execute-Bash "which ${env:target}-gcc"
80 Execute-Bash "${env:target}-gcc --version"
82 # mingw zstd doesn't come with a pkg-config file, so we manually
83 # configure its flags. liblzma just works.
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"
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 Copy-Item "C:/msys64/${env:compiler_path}/bin/libssp-0.dll" -Destination "${env:build}/src/test"
99 Copy-Item "C:/msys64/${env:compiler_path}/bin/zlib1.dll" -Destination "${env:build}/src/test"
100 Execute-Bash "VERBOSE=1 make -j2 check"
105 if ($env:compiler -eq "mingw") {
106 <# use the MSYS2 user binaries to archive failures #>
107 $oldpath = ${env:Path} -split ';'
108 $buildpath = @("C:\msys64\usr\bin") + $oldpath
109 $env:Path = @($buildpath) -join ';'
110 Set-Location "${env:build}"
111 <# store logs as appveyor artifacts: see the artifacts tab #>
112 Execute-Bash "7z a logs.zip config.log || true"
113 Execute-Bash "7z a logs.zip test-suite.log || true"
114 Execute-Bash "appveyor PushArtifact logs.zip || true"
115 Execute-Bash "tail -1000 config.log || true"
116 Execute-Bash "cat test-suite.log || true"
119 # notify the IRC channel of any failures
121 - cmd: C:\Python27\python.exe %APPVEYOR_BUILD_FOLDER%\scripts\test\appveyor-irc-notify.py irc.oftc.net:6697 tor-ci failure