nimbus-eth1/.travis.yml

39 lines
1.4 KiB
YAML
Raw Normal View History

2018-08-21 16:30:35 +00:00
language: c # or other C/C++ variants
2018-08-31 19:42:06 +00:00
# https://docs.travis-ci.com/user/caching/
2018-08-21 20:12:23 +00:00
cache:
directories:
2018-08-26 15:22:29 +00:00
- nim
2018-08-31 19:42:06 +00:00
- rocksdb
2018-08-21 16:30:35 +00:00
2018-08-21 19:13:35 +00:00
install:
2018-08-30 19:56:09 +00:00
# build nim from our own branch, to avoid downtime due to nim regressions
2018-08-31 19:42:06 +00:00
- "export NIMVER=$(git ls-remote https://github.com/status-im/nim.git HEAD | cut -f 1)"
2018-08-27 03:51:23 +00:00
- "{ [ -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 ../.. ; }"
2018-08-31 19:42:06 +00:00
- "export PATH=$PWD/nim/$NIMVER/bin:$PATH"
2018-08-30 19:56:09 +00:00
# build our own rocksdb to test with a fixed version that we think works
2018-08-31 19:42:06 +00:00
- "export ROCKSDBVER=5.14.2"
- "[ -f rocksdb/rocksdb-$ROCKSDBVER/Makefile ] || { rm -rf rocksdb ; mkdir -p rocksdb; cd rocksdb; wget https://github.com/facebook/rocksdb/archive/v$ROCKSDBVER.tar.gz && tar xvf v$ROCKSDBVER.tar.gz; cd ..; }"
- cd rocksdb/rocksdb-$ROCKSDBVER
2018-08-30 19:56:09 +00:00
- "[ -f util/build_version.cc ] || { make util/build_version.cc ; }" # use cached version if possible
- export NO_UPDATE_BUILD_VERSION=1
- make shared_lib -j$NPROC && sudo make install-shared
2018-08-31 19:42:06 +00:00
- cd ../..
2018-08-21 19:13:35 +00:00
script:
- nimble install -y && nimble test
2018-08-21 19:13:35 +00:00
2018-04-11 13:27:56 +00:00
matrix:
include:
- os: linux
sudo: required
before_install:
2018-08-30 19:56:09 +00:00
- export INSTALL_PATH=/usr
2018-08-31 19:42:06 +00:00
- export NPROC=$(nproc)
2018-04-11 13:27:56 +00:00
- os: osx
before_install:
2018-08-30 19:56:09 +00:00
- export INSTALL_PATH=$HOME # included in DYLD_FALLBACK_LIBRARY_PATH
2018-08-31 19:42:06 +00:00
- export NPROC=$(sysctl -n hw.ncpu)
2018-09-03 18:13:45 +00:00