diff options
author | Jack Lloyd <[email protected]> | 2020-10-31 07:29:59 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2020-10-31 07:30:19 -0400 |
commit | 96934dda6128e913c54381454f0f737aba074213 (patch) | |
tree | 388c29d1aa2647e4ca26e3ebe8abc89f135a02f5 | |
parent | 57943a84c7b7a3f0881f2e4e2c4fab244601822b (diff) |
Move MinGW build to last in CI
As it seems to hang somewhat regularly for reasons unknown
-rw-r--r-- | src/scripts/ci/appveyor.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/scripts/ci/appveyor.yml b/src/scripts/ci/appveyor.yml index 9bcbb9ff1..dbe806a51 100644 --- a/src/scripts/ci/appveyor.yml +++ b/src/scripts/ci/appveyor.yml @@ -8,14 +8,6 @@ environment: matrix: - # MinGW GCC - - CC: MinGW - PLATFORM: x86_amd64 - TARGET: static - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 - MAKE_TOOL: mingw32-make - TARGET_CC: gcc - # MSVC 2015 DLL x86-32 - CC: VC2015 PLATFORM: x86 @@ -78,6 +70,14 @@ environment: MAKE_TOOL: jom TARGET_CC: msvc + # MinGW GCC + - CC: MinGW + PLATFORM: x86_amd64 + TARGET: static + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + MAKE_TOOL: mingw32-make + TARGET_CC: gcc + install: - call src\scripts\ci\setup_appveyor.bat |