diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-05 00:22:34 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-05 00:29:28 +0300 |
commit | fa2afec5e7af45e7f1440b2d32c2a4e63dad6a62 (patch) | |
tree | 7b20f149209c087372288a50d1e46022455fdfbb | |
parent | update cmake-common (diff) | |
download | winapi-debug-fa2afec5e7af45e7f1440b2d32c2a4e63dad6a62.tar.gz winapi-debug-fa2afec5e7af45e7f1440b2d32c2a4e63dad6a62.zip |
AppVeyor: only Debug on Win32
-rw-r--r-- | .appveyor.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 1b98d3a..59400b6 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -20,6 +20,11 @@ configuration: matrix: fast_finish: true + # On Win32, only build Debug to speed things up: + exclude: + - platform: Win32 + configuration: RelWithDebInfo + install: - git submodule update --init --recursive @@ -50,7 +55,7 @@ test_script: - ps: '$(& "$env:install_dir\bin\test\call_stack.exe" | Select-String -Pattern "[test_lib!test_ns::foo" -SimpleMatch -Quiet) -or $(throw "test_ns::foo not found in the call stack")' for: -# Only build Release builds on master to speed things up: +# Build Release on master only to speed things up: - branches: except: - master |