diff options
author | teor <teor@torproject.org> | 2019-10-23 08:35:17 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-10-23 08:35:17 +1000 |
commit | 641f1304475402c975ede04b11e9be7c8675411b (patch) | |
tree | 546a3fecd95313e031e5a9fedf60fd0da794d441 /.appveyor.yml | |
parent | 4013e50cb732bfb3e2706baef5cd7aba8d16d8c4 (diff) | |
parent | 246fdd87424e8e1345aba20ac5d22c07ce082da4 (diff) | |
download | tor-641f1304475402c975ede04b11e9be7c8675411b.tar.gz tor-641f1304475402c975ede04b11e9be7c8675411b.zip |
Merge remote-tracking branch 'tor-github/pr/1361' into maint-0.4.0
Diffstat (limited to '.appveyor.yml')
-rw-r--r-- | .appveyor.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 07ba574f4e..296678990f 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -83,8 +83,8 @@ build_script: # configure its flags. liblzma just works. #> 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}" - Execute-Bash "V=1 make -j2" - Execute-Bash "V=1 make -j2 install" + Execute-Bash "V=1 make -k -j2" + Execute-Bash "V=1 make -k -j2 install" } test_script: @@ -97,7 +97,7 @@ test_script: Set-Location "${env:build}" Copy-Item "C:/msys64/${env:compiler_path}/bin/libssp-0.dll" -Destination "${env:build}/src/test" Copy-Item "C:/msys64/${env:compiler_path}/bin/zlib1.dll" -Destination "${env:build}/src/test" - Execute-Bash "VERBOSE=1 make -j2 check" + Execute-Bash "VERBOSE=1 make -k -j2 check" } on_finish: |