26 lines
396 B
YAML
26 lines
396 B
YAML
os:
|
|
- linux
|
|
|
|
language: c
|
|
|
|
install:
|
|
- |
|
|
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-0.15.2/bin:$PATH
|
|
|
|
script:
|
|
- cd tests
|
|
- nim c -r tester
|
|
- cd ..
|
|
- ./src/nimble install -y
|
|
|
|
notifications:
|
|
irc: "chat.freenode.net#nimbuild"
|