From 9257a0a81bad916a51fc434cc1039cda030abf6b Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Mon, 9 Jul 2018 12:06:07 -0500 Subject: [PATCH] Setup CI --- appveyor.yml | 6 ++++-- 1 file 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