56 lines
1.6 KiB
YAML
56 lines
1.6 KiB
YAML
language: go
|
|
|
|
dist: bionic
|
|
|
|
# https://docs.travis-ci.com/user/caching/
|
|
cache:
|
|
directories:
|
|
- vendor/nimbus-build-system/vendor/Nim/bin
|
|
- vendor/go/bin
|
|
- jsonTestsCache
|
|
|
|
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"
|
|
|
|
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
|
|
- 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
|
|
- os: osx
|
|
env:
|
|
- NPROC=2
|
|
|
|
|
|
install:
|
|
# official test fixtures
|
|
- scripts/setup_official_tests.sh jsonTestsCache
|
|
|
|
script:
|
|
- set -e # fail fast
|
|
# Building Nim-1.0.4 takes up to 10 minutes on Travis - the time limit after which jobs are cancelled for having no output
|
|
- make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" V=1 update # to allow a newer Nim version to be detected
|
|
- make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" LOG_LEVEL=TRACE
|
|
- make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC} -d:NETWORK_TYPE=libp2p -d:testnet_servers_image" LOG_LEVEL=TRACE
|
|
- make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" DISABLE_TEST_FIXTURES_SCRIPT=1 test
|
|
|