diff options
| author | Ganesh Viswanathan <dev@genotrance.com> | 2018-07-09 12:06:07 -0500 |
|---|---|---|
| committer | Ganesh Viswanathan <dev@genotrance.com> | 2018-07-09 12:06:07 -0500 |
| commit | 9257a0a81bad916a51fc434cc1039cda030abf6b (patch) | |
| tree | 229adbcf9a6714a5132034eb2f8b1d7a583ba2c1 | |
| parent | 7ae458419e5c69a1198b6c68b57a9f982ff35176 (diff) | |
| download | nimgen-9257a0a81bad916a51fc434cc1039cda030abf6b.tar.gz nimgen-9257a0a81bad916a51fc434cc1039cda030abf6b.zip | |
Setup CI
| -rw-r--r-- | appveyor.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index b12579b..9cccdd5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,8 +1,8 @@ version: '{build}' image: - - Visual Studio 2017 - Ubuntu + - Visual Studio 2017 matrix: fast_finish: true @@ -79,7 +79,9 @@ for: NIM_VERSION: nim-0.18.0 install: - - if [ ! $NIM_ARCHIVE ]; then curl -o $NIM_ARCHIVE $NIM_URL; fi + - echo $NIM_ARCHIVE + - if [ ! -e $NIM_ARCHIVE ]; then curl -s -o $NIM_ARCHIVE $NIM_URL; fi + - echo $? - tar xJf $NIM_ARCHIVE - cd $NIM_VERSION - sh build.sh |
