2016-09-20 16:27:01 +00:00
|
|
|
# Copied from https://github.com/nim-lang/Nim/wiki/TravisCI
|
|
|
|
language: c
|
|
|
|
env:
|
|
|
|
# Build and test against the master and devel branches of Nim
|
2016-10-01 12:55:44 +00:00
|
|
|
- BRANCH=master
|
2016-09-20 16:27:01 +00:00
|
|
|
- BRANCH=devel
|
|
|
|
compiler:
|
|
|
|
# Build and test using both gcc and clang
|
|
|
|
- gcc
|
|
|
|
- clang
|
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
# Ignore failures when building against the devel Nim branch
|
2016-10-01 12:55:44 +00:00
|
|
|
- env: BRANCH=devel
|
2016-09-20 16:27:01 +00:00
|
|
|
fast_finish: true
|
|
|
|
install:
|
|
|
|
- |
|
|
|
|
if [ ! -x nim-$BRANCH/bin/nim ]; then
|
|
|
|
git clone -b $BRANCH --depth 1 git://github.com/nim-lang/nim nim-$BRANCH/
|
|
|
|
cd nim-$BRANCH
|
|
|
|
git clone -b $BRANCH --depth 1 git://github.com/nim-lang/csources csources/
|
|
|
|
cd csources
|
|
|
|
sh build.sh
|
|
|
|
cd ..
|
|
|
|
rm -rf csources
|
|
|
|
bin/nim c koch
|
|
|
|
./koch boot -d:release
|
|
|
|
else
|
|
|
|
cd nim-$BRANCH
|
|
|
|
git fetch origin
|
|
|
|
if ! git merge FETCH_HEAD | grep "Already up-to-date"; then
|
|
|
|
bin/nim c koch
|
|
|
|
./koch boot -d:release
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cd ..
|
|
|
|
before_script:
|
|
|
|
- export PATH="nim-$BRANCH/bin${PATH:+:$PATH}"
|
|
|
|
script:
|
2016-10-09 13:21:27 +00:00
|
|
|
- nim tests
|
2016-09-20 16:27:01 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- nim-master
|
|
|
|
- nim-devel
|
|
|
|
branches:
|
|
|
|
except:
|
|
|
|
- gh-pages
|