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 2019 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 2019
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 # All installed library dlls must be copied to the test and app
66 # directories, before running tor's tests. (See below.)
68 Execute-Command "C:\msys64\usr\bin\pacman" -Syu --verbose --noconfirm pacman ;
70 Execute-Command "C:\msys64\usr\bin\pacman" -Sy --verbose --needed --noconfirm ${env:mingw_prefix}-libevent ${env:mingw_prefix}-openssl ${env:mingw_prefix}-pkg-config ${env:mingw_prefix}-xz ${env:mingw_prefix}-zstd ;
74 if ($env:compiler -eq "mingw") {
75 <# use the MSYS2 compiler and user binaries to build and install #>
76 $oldpath = ${env:Path} -split ';'
77 $buildpath = @("C:\msys64\${env:compiler_path}\bin", "C:\msys64\usr\bin") + $oldpath
78 $env:Path = @($buildpath) -join ';'
79 $env:build = @("${env:APPVEYOR_BUILD_FOLDER}", $env:target) -join '\'
80 Set-Location "${env:APPVEYOR_BUILD_FOLDER}"
81 Execute-Bash 'autoreconf -i'
83 Set-Location "${env:build}"
84 Execute-Bash "which ${env:target}-gcc"
85 Execute-Bash "${env:target}-gcc --version"
87 # mingw zstd doesn't come with a pkg-config file, so we manually
88 # configure its flags. liblzma just works.
90 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} CFLAGS='-D__USE_MINGW_ANSI_STDIO=0'"
91 Execute-Bash "V=1 make -k -j2"
92 Execute-Bash "V=1 make -k -j2 install"
97 if ($env:compiler -eq "mingw") {
98 <# use the MSYS2 compiler binaries to make check #>
99 $oldpath = ${env:Path} -split ';'
100 $buildpath = @("C:\msys64\${env:compiler_path}\bin") + $oldpath
101 $env:Path = $buildpath -join ';'
102 Set-Location "${env:build}"
103 <# Some compiler dlls must be copied to the test and app
104 # directories, before running tor's tests.
106 Copy-Item "C:/msys64/${env:compiler_path}/bin/libssp-0.dll","C:/msys64/${env:compiler_path}/bin/zlib1.dll" -Destination "${env:build}/src/test"
107 Copy-Item "C:/msys64/${env:compiler_path}/bin/libssp-0.dll","C:/msys64/${env:compiler_path}/bin/zlib1.dll" -Destination "${env:build}/src/app"
108 <# All installed library dlls must be copied to the test and app
109 # directories, before running tor's tests.
110 # (See install command above.)
112 Copy-Item "C:/${env:compiler_path}/bin/libcrypto*.dll","C:/${env:compiler_path}/bin/libssl*.dll","C:/${env:compiler_path}/bin/liblzma*.dll","C:/${env:compiler_path}/bin/libevent*.dll","C:/${env:compiler_path}/bin/libzstd*.dll" -Destination "${env:build}/src/test"
113 Copy-Item "C:/${env:compiler_path}/bin/libcrypto*.dll","C:/${env:compiler_path}/bin/libssl*.dll","C:/${env:compiler_path}/bin/liblzma*.dll","C:/${env:compiler_path}/bin/libevent*.dll","C:/${env:compiler_path}/bin/libzstd*.dll" -Destination "${env:build}/src/app"
114 Execute-Bash "VERBOSE=1 TOR_SKIP_TESTCASES=crypto/openssl_version make -k -j2 check"
119 <# if we failed before install:, these functions won't be defined #>
120 Function Execute-Command ($commandPath)
122 & $commandPath $args 2>&1
123 if ( $LastExitCode -ne 0 ) {
124 $host.SetShouldExit( $LastExitCode )
127 Function Execute-Bash ()
129 Execute-Command 'c:\msys64\usr\bin\bash' '-e' '-c' $args
131 if ($env:compiler -eq "mingw") {
132 <# use the MSYS2 user binaries to archive failures #>
133 $oldpath = ${env:Path} -split ';'
134 $buildpath = @("C:\msys64\usr\bin") + $oldpath
135 $env:Path = @($buildpath) -join ';'
136 Set-Location "${env:build}"
137 <# store logs as appveyor artifacts: see the artifacts tab #>
138 Execute-Bash "7z a logs.zip config.log || true"
139 Execute-Bash "7z a logs.zip test-suite.log || true"
140 Execute-Bash "appveyor PushArtifact logs.zip || true"
141 Execute-Bash "tail -1000 config.log || true"
142 Execute-Bash "cat test-suite.log || true"
145 # notify the IRC channel of any failures
147 - cmd: C:\Python27\python.exe %APPVEYOR_BUILD_FOLDER%\scripts\test\appveyor-irc-notify.py irc.oftc.net:6697 tor-ci failure