From 3fd84b293f14aae50133ae52869137b5b9d341a1 Mon Sep 17 00:00:00 2001 From: Bruce Doan Date: Thu, 29 Jun 2017 00:38:08 +0700 Subject: [PATCH] update travis --- .travis.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1030153..cd44650 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,15 +6,18 @@ language: c install: - | - wget https://nim-lang.org/download/nim-0.17.0.tar.xz - tar -xf nim-0.17.0.tar.xz - cd nim-0.17.0 + git clone --depth=1 -b devel https://github.com/nim-lang/Nim.git + cd Nim + git clone --depth 1 https://github.com/nim-lang/csources.git + cd csources sh build.sh - cd `pwd`/nim-0.17.0 - echo `pwd` - ll . + cd ../ + bin/nim c koch + ./koch boot -d:release + ./koch tools + before_script: - - export PATH=`pwd`/nim-0.17.0/bin:$PATH + - export PATH=`pwd`/Nim/bin:$PATH script: - nimble test