42 lines
974 B
YAML
42 lines
974 B
YAML
language: go
|
|
|
|
# https://docs.travis-ci.com/user/caching/
|
|
cache:
|
|
directories:
|
|
- vendor/nimbus-build-system/vendor/Nim/bin
|
|
- vendor/go/bin
|
|
- rocksdbCache
|
|
- 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
|
|
# disable LFS file downloading during regular cloning
|
|
lfs_skip_smudge: true
|
|
|
|
go:
|
|
- "1.12.x"
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
sudo: required
|
|
before_install:
|
|
- export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
|
|
- os: osx
|
|
before_install:
|
|
- launchctl setenv LIBRARY_PATH /usr/local/lib # for RocksDB
|
|
|
|
install:
|
|
# build our own rocksdb to test with a fixed version that we think works
|
|
- vendor/nimbus-build-system/scripts/build_rocksdb.sh rocksdbCache
|
|
|
|
# LFS test fixtures
|
|
- scripts/process_lfs.sh jsonTestsCache
|
|
|
|
script:
|
|
- set -e # fail fast
|
|
- make -j2
|
|
- make -j2 DISABLE_LFS_SCRIPT=1 test
|
|
|