nimbus-eth1/.travis.yml

37 lines
879 B
YAML
Raw Normal View History

language: c
2018-08-21 16:30:35 +00:00
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:
2019-06-16 18:18:46 +00:00
- rocksdbCache
- vendor/Nim/bin
2018-08-21 16:30:35 +00:00
2019-02-15 22:37:10 +00:00
git:
2019-02-15 23:56:13 +00:00
# when multiple CI builds are queued, the tested commit needs to be in the last X commits cloned with "--depth X"
depth: 10
# disable LFS file downloading during regular cloning
lfs_skip_smudge: true
2019-02-15 22:37:10 +00:00
2018-09-05 03:01:33 +00:00
matrix:
include:
- os: linux
sudo: required
before_install:
2019-06-16 18:18:46 +00:00
- export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
2018-09-05 03:01:33 +00:00
- os: osx
before_install:
2019-06-16 18:18:46 +00:00
- launchctl setenv LIBRARY_PATH /usr/local/lib # for RocksDB
2018-09-05 03:01:33 +00:00
2018-08-21 19:13:35 +00:00
install:
2018-08-30 19:56:09 +00:00
# build our own rocksdb to test with a fixed version that we think works
2019-06-16 18:18:46 +00:00
- ./build_rocksdb.sh rocksdbCache
2018-08-21 19:13:35 +00:00
script:
2019-02-15 22:37:10 +00:00
- set -e # fail fast
2019-06-16 18:18:46 +00:00
- make -j2
- ./build/nimbus --help
2019-06-16 18:18:46 +00:00
- make -j2 test test-reproducibility
- make -C vendor/nim-beacon-chain -j2 test
- make go-checks
2019-02-15 22:37:10 +00:00