diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-05 00:33:20 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-05 00:35:36 +0300 |
commit | 2a354e70764fff6a0f8991a4e8913f626b48aeaf (patch) | |
tree | 9204c0907cde4da92da6db338d25992dfa271d61 | |
parent | update cmake-common (diff) | |
download | privilege-check-2a354e70764fff6a0f8991a4e8913f626b48aeaf.tar.gz privilege-check-2a354e70764fff6a0f8991a4e8913f626b48aeaf.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 4a61be0..0ff59e9 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: Release + install: - git submodule update --init --recursive @@ -32,7 +37,7 @@ after_build: - appveyor.exe PushArtifact "%APPVEYOR_PROJECT_NAME%-%PLATFORM%-%CONFIGURATION%.zip" for: -# Only build Release builds for master to speed things up: +# Build Release on master only to speed things up: - branches: except: - master |