nimbus-eth2/.travis.yml

42 lines
947 B
YAML
Raw Normal View History

language: go
2018-07-20 13:46:03 +00:00
2018-09-05 02:33:39 +00:00
# https://docs.travis-ci.com/user/caching/
cache:
directories:
- vendor/Nim/bin
- vendor/go/bin
2019-06-17 12:50:44 +00:00
- rocksdbCache
- jsonTestsCache
2018-07-20 13:46:03 +00:00
2019-06-12 16:15:15 +00:00
git:
# 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
go:
- "1.12.x"
2019-01-14 12:33:09 +00:00
matrix:
include:
- os: linux
sudo: required
before_install:
2019-06-17 12:50:44 +00:00
- export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
2019-01-14 12:33:09 +00:00
- os: osx
before_install:
2019-06-17 12:50:44 +00:00
- launchctl setenv LIBRARY_PATH /usr/local/lib # for RocksDB
2018-07-20 13:46:03 +00:00
2018-09-05 02:33:39 +00:00
install:
2019-01-14 12:33:09 +00:00
# build our own rocksdb to test with a fixed version that we think works
- vendor/nimbus-build-system/scripts/build_rocksdb.sh rocksdbCache
2019-01-14 12:33:09 +00:00
# LFS test fixtures
- scripts/process_lfs.sh jsonTestsCache
2018-09-05 02:33:39 +00:00
script:
- set -e # fail fast
- make -j2
- make -j2 DISABLE_LFS_SCRIPT=1 test