diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-05 00:40:31 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-05 00:40:31 +0300 |
commit | df292b4e63dac48bc50c2cf3eca5fa923a6aeb31 (patch) | |
tree | 75f42709e34f4abd856e4f98f8484b3e29dcd794 /.appveyor | |
parent | update cmake-common (diff) | |
download | windows7-drivers-df292b4e63dac48bc50c2cf3eca5fa923a6aeb31.tar.gz windows7-drivers-df292b4e63dac48bc50c2cf3eca5fa923a6aeb31.zip |
AppVeyor: only Debug on Win32
Diffstat (limited to '')
-rw-r--r-- | .appveyor.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index bac19e8..22df3dd 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -28,6 +28,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 @@ -42,7 +47,7 @@ after_build: - appveyor.exe PushArtifact "%APPVEYOR_PROJECT_NAME%-%PLATFORM%-%CONFIGURATION%-%appveyor_driver_target_os%.zip" for: -# Only build Release builds for master to speed things up: +# Build Release on master only to speed things up: - branches: except: - master |