From 53917e2d537b0abdddd1fe79fb4d6902f5a53e73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Mon, 18 Feb 2019 01:47:28 +0100 Subject: [PATCH] AppVeyor: disable test-reproducibility on 32-bit Windows --- .appveyor.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 0206a0079..0861904e8 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -25,12 +25,13 @@ build_script: - git submodule update --init --recursive --depth 10 # the 32-bit build is done on a 64-bit image, so we need to override the architecture - mingw32-make ARCH_OVERRIDE=%PLATFORM% fetch-dlls - - mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM% V=0 nimbus + - dir C:\mingw-w64 test_script: - - dir C:\mingw-w64 + - mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM% V=0 nimbus - build\nimbus.exe --help - - mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM% V=0 test test-reproducibility + - mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM% V=0 test + - IF "%PLATFORM%" == "x64" mingw32-make -j2 test-reproducibility deploy: off