* Improve messaging for uninstall * Uninstall if in right order * Fix CI - cannot looks better * Raise exception when nothing to remove * Test case, minor test fix * 0.19.6 fixes * Fix Nim devel hash * Feedback
34 lines
616 B
YAML
34 lines
616 B
YAML
os:
|
|
- linux
|
|
- osx
|
|
|
|
language: c
|
|
|
|
env:
|
|
- BRANCH=0.19.6
|
|
- BRANCH=0.20.2
|
|
- BRANCH=#44aadd50cfa647a759610a15967960632bf597ce
|
|
|
|
cache:
|
|
directories:
|
|
- "$HOME/.choosenim/toolchains/nim-0.19.6"
|
|
- "$HOME/.choosenim/toolchains/nim-0.20.2"
|
|
|
|
install:
|
|
- export CHOOSENIM_CHOOSE_VERSION=$BRANCH
|
|
- |
|
|
curl https://nim-lang.org/choosenim/init.sh -sSf > init.sh
|
|
sh init.sh -y
|
|
|
|
before_script:
|
|
- export CHOOSENIM_NO_ANALYTICS=1
|
|
- export PATH=$HOME/.nimble/bin:$PATH
|
|
|
|
script:
|
|
- cd tests
|
|
- nim c -r tester
|
|
- cd ..
|
|
- ./src/nimble install -y
|
|
|
|
notifications:
|
|
irc: "chat.freenode.net#nimbuild"
|