Update appveyor.yml to ignore x86 optimised failures

Several tests are currently failing due to what seems to be compiler bugs.

Ignore tests for now and revisit once MSVC 15.7 is released.
This commit is contained in:
Lewis Baker 2018-03-27 11:47:42 +10:30 committed by GitHub
parent a19b13b06c
commit 4963e33422
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,3 @@
version: 1.0.{build}
image:
@ -13,6 +12,13 @@ configuration:
- debug
- optimised
matrix:
# Allow failures under MSVC x86 optimised since there are some known compiler
# bugs causing failures here.
allow_failures:
- platform: x86
configuration: optimised
clone_script:
- ps: git clone -q $("--branch=" + $env:APPVEYOR_REPO_BRANCH) $("https://github.com/" + $env:APPVEYOR_REPO_NAME + ".git") $env:APPVEYOR_BUILD_FOLDER
- ps: if (!$env:APPVEYOR_PULL_REQUEST_NUMBER) {$("git checkout -qf " + $env:APPVEYOR_REPO_COMMIT)}