Update Nim versions, fix recursive test

This commit is contained in:
Ganesh Viswanathan 2019-05-31 14:33:31 -05:00 committed by Dominik Picheta
commit 8dc036c896
2 changed files with 5 additions and 5 deletions

View file

@ -5,12 +5,12 @@ os:
language: c
env:
- BRANCH=0.19.4
- BRANCH=#4f9366975441be889a8cd4fbfb4e41f6830dc542
- BRANCH=0.19.6
- BRANCH=#44cc5f6360c7ccc96c296948b2524bd2cdebf1f0
cache:
directories:
- "$HOME/.choosenim/toolchains/nim-0.19.4"
- "$HOME/.choosenim/toolchains/nim-0.19.6"
install:
- export CHOOSENIM_CHOOSE_VERSION=$BRANCH

View file

@ -11,11 +11,11 @@ requires "nim >= 0.12.1"
task recurse, "Level 1":
echo 1
exec "nimble recurse2"
exec "../../src/nimble recurse2"
task recurse2, "Level 2":
echo 2
exec "nimble recurse3"
exec "../../src/nimble recurse3"
task recurse3, "Level 3":
echo 3