nimbus-eth1/.travis.yml

42 lines
1.1 KiB
YAML

language: c # or other C/C++ variants
cache: ccache
matrix:
# allow_failures:
# - os: osx
include:
- os: linux
cache: ccache
sudo: required
before_install:
- sudo apt-get install -y libssl-dev libgflags-dev libsnappy-dev
- git clone https://github.com/facebook/rocksdb.git
# rocksdb not present on trusty - on a newer ubuntu you can apt-get install -y librocksdb-dev
- cd rocksdb && git checkout v5.14.2 && make shared_lib -j$(nproc) && sudo make INSTALL_PATH=/usr install-shared && cd ..
- git clone https://github.com/status-im/nim.git
- cd nim
- sh build_all.sh
- cd ..
- export PATH=$PWD/nim/bin:$PATH
script:
- nimble install -dy && nimble test
- os: osx
before_install:
- brew update
- brew install rocksdb ccache
- export PATH="/usr/local/opt/ccache/libexec:$PATH"
# - brew install gcc
- git clone https://github.com/status-im/nim.git
- cd nim
- sh build_all.sh
- cd ..
- export PATH=$PWD/nim/bin:$PATH
script:
- nimble install -dy && nimble test