2018-09-03 03:02:08 +00:00
|
|
|
language: c # or other C/C++ variants
|
2018-07-24 14:52:18 +00:00
|
|
|
|
2018-09-03 03:02:08 +00:00
|
|
|
sudo: false
|
2018-07-24 14:52:18 +00:00
|
|
|
|
2018-09-03 03:02:08 +00:00
|
|
|
# https://docs.travis-ci.com/user/caching/
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- nim
|
2018-07-24 14:52:18 +00:00
|
|
|
|
2018-09-03 03:02:08 +00:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
2018-07-24 14:52:18 +00:00
|
|
|
|
2018-09-03 03:02:08 +00:00
|
|
|
install:
|
|
|
|
# build nim from our own branch, to avoid downtime due to nim regressions
|
|
|
|
- "export NIMVER=$(git ls-remote https://github.com/status-im/nim.git HEAD | cut -f 1)"
|
|
|
|
- "{ [ -f nim/$NIMVER/bin/nim ] && [ -f nim/$NIMVER/bin/nimble ] ; } || { rm -rf nim ; mkdir -p nim; git clone https://github.com/status-im/nim.git nim/$NIMVER; cd nim/$NIMVER; sh build_all.sh; cd ../.. ; }"
|
|
|
|
- "export PATH=$PWD/nim/$NIMVER/bin:$PATH"
|
2018-07-24 14:52:18 +00:00
|
|
|
|
2018-09-03 03:02:08 +00:00
|
|
|
script:
|
|
|
|
- nimble install -dy && nimble test
|