2020-04-15 12:38:42 +00:00
|
|
|
language: c
|
2018-07-20 13:46:03 +00:00
|
|
|
|
2019-10-17 13:21:45 +00:00
|
|
|
dist: bionic
|
|
|
|
|
2018-09-05 02:33:39 +00:00
|
|
|
# https://docs.travis-ci.com/user/caching/
|
|
|
|
cache:
|
2020-04-20 12:17:23 +00:00
|
|
|
ccache: true
|
2018-09-05 02:33:39 +00:00
|
|
|
directories:
|
2019-08-28 14:19:33 +00:00
|
|
|
- vendor/nimbus-build-system/vendor/Nim/bin
|
2019-08-14 11:19:17 +00:00
|
|
|
- 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
|
|
|
|
|
2019-01-14 12:33:09 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
2019-10-17 13:21:45 +00:00
|
|
|
arch: amd64
|
|
|
|
sudo: required
|
|
|
|
env:
|
|
|
|
- NPROC=2
|
|
|
|
before_install:
|
|
|
|
- export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
|
2020-07-03 10:04:04 +00:00
|
|
|
#- os: linux
|
|
|
|
#arch: arm64
|
|
|
|
#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)
|
|
|
|
#before_install:
|
|
|
|
#- export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
|
|
|
|
#- sudo apt-get -q update
|
|
|
|
#- sudo apt-get install -y libpcre3-dev
|
2019-01-14 12:33:09 +00:00
|
|
|
- os: osx
|
2020-04-20 12:17:23 +00:00
|
|
|
before_install:
|
|
|
|
- HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_CLEANUP=1 brew install ccache
|
2019-10-17 13:21:45 +00:00
|
|
|
env:
|
|
|
|
- NPROC=2
|
2020-07-03 10:04:04 +00:00
|
|
|
#allow_failures:
|
|
|
|
## ARM64 is a bit buggy: https://travis-ci.community/t/no-output-has-been-received-and-then-build-terminated-on-arm64/8834
|
|
|
|
#- arch: arm64
|
2018-07-20 13:46:03 +00:00
|
|
|
|
2019-01-14 12:33:09 +00:00
|
|
|
|
2019-11-05 17:47:47 +00:00
|
|
|
install:
|
2019-11-22 13:21:16 +00:00
|
|
|
# official test fixtures
|
2019-11-01 08:44:16 +00:00
|
|
|
- scripts/setup_official_tests.sh jsonTestsCache
|
2019-08-14 11:19:17 +00:00
|
|
|
|
2018-09-05 02:33:39 +00:00
|
|
|
script:
|
2019-08-21 12:45:24 +00:00
|
|
|
- set -e # fail fast
|
2019-11-29 09:17:18 +00:00
|
|
|
# Building Nim-1.0.4 takes up to 10 minutes on Travis - the time limit after which jobs are cancelled for having no output
|
2020-06-05 19:11:40 +00:00
|
|
|
- make -j${NPROC} NIMFLAGS="--parallelBuild:2" V=1 update # to allow a newer Nim version to be detected
|
|
|
|
- make -j${NPROC} NIMFLAGS="--parallelBuild:2" LOG_LEVEL=TRACE
|
2020-11-07 18:00:31 +00:00
|
|
|
- make -j${NPROC} NIMFLAGS="--parallelBuild:2 -d:testnet_servers_image" LOG_LEVEL=TRACE nimbus_beacon_node
|
2020-07-03 10:04:04 +00:00
|
|
|
- make -j${NPROC} NIMFLAGS="--parallelBuild:2" DISABLE_TEST_FIXTURES_SCRIPT=1 test
|