nimbus-eth2/.travis.yml

60 lines
1.7 KiB
YAML
Raw Normal View History

language: go
2018-07-20 13:46:03 +00:00
dist: bionic
2018-09-05 02:33:39 +00:00
# https://docs.travis-ci.com/user/caching/
cache:
directories:
2019-08-28 14:19:33 +00:00
- vendor/nimbus-build-system/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
go:
- "1.12.x"
2019-01-14 12:33:09 +00:00
matrix:
include:
- os: linux
arch: amd64
sudo: required
env:
- NPROC=2
before_install:
- export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
- sudo apt-get -q update
- sudo apt-get install -y librocksdb-dev
- os: linux
arch: arm64
2019-01-14 12:33:09 +00:00
sudo: required
env:
- NPROC=6 # Worth trying more than 2 parallel jobs: https://travis-ci.community/t/no-cache-support-on-arm64/5416/8
# (also used to get a different cache key than the amd64 one)
2019-01-14 12:33:09 +00:00
before_install:
2019-06-17 12:50:44 +00:00
- export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
- sudo apt-get -q update
- sudo apt-get install -y libpcre3-dev librocksdb-dev
2019-01-14 12:33:09 +00:00
- os: osx
env:
- NPROC=2
2019-01-14 12:33:09 +00:00
before_install:
2019-06-17 12:50:44 +00:00
- launchctl setenv LIBRARY_PATH /usr/local/lib # for RocksDB
# build our own rocksdb to test with a fixed version that we think works
- vendor/nimbus-build-system/scripts/build_rocksdb.sh rocksdbCache
2018-07-20 13:46:03 +00:00
2019-01-14 12:33:09 +00:00
install:
2019-11-22 13:21:16 +00:00
# official test fixtures
- scripts/setup_official_tests.sh jsonTestsCache
2018-09-05 02:33:39 +00:00
script:
- set -e # fail fast
- make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" update # to allow a newer Nim version to be detected
- make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}"
2019-11-22 13:21:16 +00:00
- make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" DISABLE_TEST_FIXTURES_SCRIPT=1 test