diff options
author | LemonBoy <LemonBoy@users.noreply.github.com> | 2019-02-18 08:07:10 +0100 |
---|---|---|
committer | Arne Döring <arne.doering@gmx.net> | 2019-02-18 08:07:10 +0100 |
commit | 8b39551fca81e95b51393a2a8e702eebe3ba7c51 (patch) | |
tree | 62bc1ec2e54b1f3f22870655d2af2c3f9d079176 /appveyor.yml | |
parent | d8ff25f03250556c3ed99dbb7ad65d1cc627e1d3 (diff) | |
download | Nim-8b39551fca81e95b51393a2a8e702eebe3ba7c51.tar.gz |
Small CI improvements (#10699)
* [appveyor] Cache all the downloaded binaries * [travis] Enable fast_finish
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/appveyor.yml b/appveyor.yml index 4b5705fe2..31be04d1b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,10 +1,5 @@ version: '{build}' -cache: -- x86_64-4.9.2-release-win32-seh-rt_v4-rev4.7z -- sqlite-dll-win64-x64-3160200.zip -# - i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z - environment: MINGW_DIR: mingw64 MINGW_URL: https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/4.9.2/threads-win32/seh/x86_64-4.9.2-release-win32-seh-rt_v4-rev4.7z/download @@ -19,6 +14,11 @@ environment: - NIM_TEST_PACKAGES: true - NIM_TEST_PACKAGES: false +cache: + - '%MINGW_ARCHIVE%' + - '%SQLITE_ARCHIVE%' + - '%OPENBLAS_ARCHIVE%' + matrix: #allow_failures: # - NIM_TEST_PACKAGES: true |