diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-05 00:38:32 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-05 00:38:32 +0300 |
commit | d3286cdffcff7e4905de193c7eda5f4fe89af4b3 (patch) | |
tree | 8dc3a683ebc1c1c4cfaac746623390f67bbf1228 | |
parent | update cmake-common (diff) | |
download | aes-tools-d3286cdffcff7e4905de193c7eda5f4fe89af4b3.tar.gz aes-tools-d3286cdffcff7e4905de193c7eda5f4fe89af4b3.zip |
AppVeyor: only Debug on Win32
Diffstat (limited to '')
-rw-r--r-- | .appveyor.yml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 838bd02..41009fe 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -23,9 +23,15 @@ configuration: matrix: fast_finish: true + exclude: - - use_asm: ON - platform: x64 + - platform: x64 + use_asm: ON + + # On Win32, only build Debug to speed things up: + - platform: Win32 + use_asm: OFF + configuration: Release install: - git submodule update --init --recursive @@ -73,7 +79,7 @@ test_script: - ps: Get-Content "$env:APPVEYOR_BUILD_FOLDER\test\file.log" -Tail 5 for: -# Only build Release builds for master to speed things up: +# Build Release on master only to speed things up: - branches: except: - master |