Add .travis.yml file.
This commit is contained in:
parent
3f6ef3ae55
commit
c53350cc61
1 changed files with 24 additions and 0 deletions
24
.travis.yml
Normal file
24
.travis.yml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
os:
|
||||
- linux
|
||||
|
||||
language: c
|
||||
|
||||
install:
|
||||
- |
|
||||
git clone https://github.com/nim-lang/Nim.git
|
||||
cd Nim
|
||||
sh bootstrap.sh
|
||||
cd ..
|
||||
before_script:
|
||||
- set -e
|
||||
- set -x
|
||||
- export PATH=`pwd`/Nim/bin:$PATH
|
||||
|
||||
script:
|
||||
- nim c src/nimble
|
||||
- ./src/nimble install -y
|
||||
- cd tests
|
||||
- nim c -r tester
|
||||
|
||||
notifications:
|
||||
irc: "chat.freenode.net#nimbuild"
|
||||
Loading…
Add table
Add a link
Reference in a new issue