2019-08-21 00:03:15 +02:00
|
|
|
language: c
|
2018-08-21 10:30:35 -06:00
|
|
|
|
2019-10-28 21:08:13 +01:00
|
|
|
dist: bionic
|
|
|
|
|
2018-08-31 13:42:06 -06:00
|
|
|
# https://docs.travis-ci.com/user/caching/
|
2018-08-21 14:12:23 -06:00
|
|
|
cache:
|
|
|
|
directories:
|
2019-06-16 20:18:46 +02:00
|
|
|
- rocksdbCache
|
2019-08-28 16:19:08 +02:00
|
|
|
- vendor/nimbus-build-system/vendor/Nim/bin
|
2018-08-21 10:30:35 -06:00
|
|
|
|
2019-02-15 23:37:10 +01:00
|
|
|
git:
|
2019-02-16 00:56:13 +01:00
|
|
|
# when multiple CI builds are queued, the tested commit needs to be in the last X commits cloned with "--depth X"
|
|
|
|
depth: 10
|
2019-06-12 15:19:14 +02:00
|
|
|
# disable LFS file downloading during regular cloning
|
|
|
|
lfs_skip_smudge: true
|
2019-02-15 23:37:10 +01:00
|
|
|
|
2018-09-04 21:01:33 -06:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
2019-10-16 15:34:17 +02:00
|
|
|
arch: amd64
|
2018-09-04 21:01:33 -06:00
|
|
|
sudo: required
|
2019-10-27 21:04:12 +01:00
|
|
|
env:
|
|
|
|
- NPROC=2
|
2018-09-04 21:01:33 -06:00
|
|
|
before_install:
|
2019-06-16 20:18:46 +02:00
|
|
|
- export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
|
2019-11-06 12:58:56 +01:00
|
|
|
- sudo apt-get -q update
|
|
|
|
- sudo apt-get install -y librocksdb-dev
|
2019-10-16 15:34:17 +02:00
|
|
|
- os: linux
|
|
|
|
arch: arm64
|
|
|
|
sudo: required
|
2019-10-27 21:04:12 +01:00
|
|
|
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-10-16 15:34:17 +02:00
|
|
|
before_install:
|
|
|
|
- export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
|
2019-10-28 21:08:13 +01:00
|
|
|
- sudo apt-get -q update
|
2019-11-06 12:58:56 +01:00
|
|
|
- sudo apt-get install -y libpcre3-dev librocksdb-dev
|
2018-09-04 21:01:33 -06:00
|
|
|
- os: osx
|
2019-10-27 21:04:12 +01:00
|
|
|
env:
|
|
|
|
- NPROC=2
|
2018-09-04 21:01:33 -06:00
|
|
|
before_install:
|
2019-06-16 20:18:46 +02:00
|
|
|
- launchctl setenv LIBRARY_PATH /usr/local/lib # for RocksDB
|
2019-11-06 12:58:56 +01: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-08-14 20:43:02 +02:00
|
|
|
|
2018-08-21 13:13:35 -06:00
|
|
|
script:
|
2019-02-15 23:37:10 +01:00
|
|
|
- set -e # fail fast
|
2019-10-28 23:37:28 +07:00
|
|
|
- make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" update # to allow a newer Nim version to be detected
|
2019-10-27 21:04:12 +01:00
|
|
|
- make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}"
|
2019-08-21 00:03:15 +02:00
|
|
|
- build/nimbus --help
|
2019-10-27 21:04:12 +01:00
|
|
|
- make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" test test-reproducibility
|
2019-02-15 23:37:10 +01:00
|
|
|
|