2019-08-24 16:30:34 +00:00
|
|
|
language: c
|
2018-11-02 05:10:58 +00:00
|
|
|
|
|
|
|
cache:
|
|
|
|
directories:
|
2019-08-24 16:30:34 +00:00
|
|
|
- NimBinaries
|
|
|
|
|
|
|
|
git:
|
|
|
|
# when multiple CI builds are queued, the tested commit needs to be in the last X commits cloned with "--depth X"
|
|
|
|
depth: 10
|
2018-11-02 05:10:58 +00:00
|
|
|
|
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
|
|
|
|
install:
|
|
|
|
# build nim from our own branch - this to avoid the day-to-day churn and
|
|
|
|
# regressions of the fast-paced Nim development while maintaining the
|
|
|
|
# flexibility to apply patches
|
2019-08-24 16:30:34 +00:00
|
|
|
- curl -O -L -s -S https://raw.githubusercontent.com/status-im/nimbus-build-system/master/scripts/build_nim.sh
|
|
|
|
- env MAKE="make -j2" bash build_nim.sh Nim csources dist/nimble NimBinaries
|
|
|
|
- export PATH=$PWD/Nim/bin:$PATH
|
|
|
|
|
2020-03-28 04:51:04 +00:00
|
|
|
- git clone --depth 1 https://github.com/google/snappy snappycpp
|
2018-11-02 05:10:58 +00:00
|
|
|
|
|
|
|
script:
|
2020-03-28 04:51:04 +00:00
|
|
|
- cd snappycpp
|
2018-11-02 05:10:58 +00:00
|
|
|
- mkdir build
|
|
|
|
- cd build && cmake ../ && make
|
|
|
|
- cd ../..
|
2020-03-28 04:51:04 +00:00
|
|
|
- cp snappycpp/build/libsnappy.a ./tests/
|
2018-11-02 05:10:58 +00:00
|
|
|
|
2019-08-24 16:30:34 +00:00
|
|
|
- nimble install -y
|
2018-11-02 05:10:58 +00:00
|
|
|
- nimble test
|
2019-08-24 16:30:34 +00:00
|
|
|
|