From 8a1efc275e3e335af84e293bf7e4b842b3ca9520 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Fri, 11 Nov 2016 11:35:50 +0000 Subject: [PATCH] Fixes build (missing bootstrap.sh). Now builds against Nim 0.15.2. --- .travis.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index b08a253..b334125 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,14 +5,16 @@ language: c install: - | - git clone https://github.com/nim-lang/Nim.git - cd Nim - sh bootstrap.sh + wget http://nim-lang.org/download/nim-0.15.2.tar.xz + tar -xf nim-0.15.2.tar.xz + cd nim-0.15.2 + sh build.sh cd .. + before_script: - set -e - set -x - - export PATH=`pwd`/Nim/bin:$PATH + - export PATH=`pwd`/nim-0.15.2/bin:$PATH script: - cd tests @@ -21,4 +23,4 @@ script: - ./src/nimble install -y notifications: - irc: "chat.freenode.net#nimbuild" \ No newline at end of file + irc: "chat.freenode.net#nimbuild"