2018-04-10 16:51:17 +00:00
version : '{build}'
2019-02-16 05:32:45 +00:00
# use an image with recent Mingw-w64 versions available on both architectures: https://www.appveyor.com/docs/windows-images-software/#mingw-msys-cygwin
2019-02-16 02:13:54 +00:00
image : Visual Studio 2015
2018-04-10 16:51:17 +00:00
2019-06-12 13:19:14 +00:00
environment :
# disable LFS file downloading during regular cloning
GIT_LFS_SKIP_SMUDGE : 1
2019-06-09 14:48:29 +00:00
cache :
2019-10-16 22:50:27 +00:00
- NimBinaries
2019-06-09 14:48:29 +00:00
2018-04-10 16:51:17 +00:00
matrix :
2019-02-16 05:32:45 +00:00
# We always want 32-bit and 64-bit compilation
2018-09-05 03:01:33 +00:00
fast_finish : false
platform :
- x86
- x64
2018-04-10 16:51:17 +00:00
2019-02-16 00:29:50 +00:00
# when multiple CI builds are queued, the tested commit needs to be in the last X commits cloned with "--depth X"
clone_depth : 10
2019-10-16 21:18:31 +00:00
init :
2019-10-20 16:20:24 +00:00
# disable cache saving outside the master branch
- ps : IF ("$env:APPVEYOR_REPO_BRANCH" -ne "master") { $env:APPVEYOR_CACHE_SKIP_SAVE = "true" }
2019-10-16 21:18:31 +00:00
2018-04-10 16:51:17 +00:00
install :
2019-08-20 22:03:15 +00:00
- git submodule update --init --recursive
2019-02-16 05:32:45 +00:00
# use the newest versions documented here: https://www.appveyor.com/docs/windows-images-software/#mingw-msys-cygwin
2019-02-16 02:32:59 +00:00
- IF "%PLATFORM%" == "x86" SET PATH=C:\mingw-w64\i686-6.3.0-posix-dwarf-rt_v5-rev1\mingw32\bin;%PATH%
2019-02-16 02:13:54 +00:00
- IF "%PLATFORM%" == "x64" SET PATH=C:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin;%PATH%
2018-09-05 03:01:33 +00:00
2018-04-10 16:51:17 +00:00
build_script :
2019-02-16 05:32:45 +00:00
# the 32-bit build is done on a 64-bit image, so we need to override the architecture
2019-06-09 14:48:29 +00:00
- mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM% CI_CACHE=NimBinaries update
2019-04-14 23:33:08 +00:00
- mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM% fetch-dlls
2019-02-18 00:47:28 +00:00
- dir C:\mingw-w64
2019-02-16 00:29:50 +00:00
2018-04-10 16:51:17 +00:00
test_script :
2019-03-31 20:49:32 +00:00
- mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM%
2018-12-24 16:03:27 +00:00
- build\nimbus.exe --help
2019-03-31 20:49:32 +00:00
- mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM% test
2019-02-18 00:47:28 +00:00
- IF "%PLATFORM%" == "x64" mingw32-make -j2 test-reproducibility
2019-11-29 10:14:49 +00:00
# disable libnimbus builds until https://github.com/nim-lang/Nim/issues/12759 is fixed
# wrapper builds could then also get activated instead but need some rework for Windows
2019-11-26 16:05:49 +00:00
# the "go-checks" target fails in AppVeyor, for some reason; easier to disable than to debug
2019-11-29 10:14:49 +00:00
# - mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM% DISABLE_GO_CHECKS=1 libnimbus.so
# - mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM% DISABLE_GO_CHECKS=1 libnimbus.a
2018-04-10 16:51:17 +00:00
deploy : off
2019-02-16 00:29:50 +00:00