lighthouse/.travis.yml

30 lines
1.1 KiB
YAML
Raw Normal View History

2018-07-12 05:04:02 +00:00
language: rust
git:
submodules: false
2019-01-21 22:09:21 +00:00
before_install:
2019-01-21 23:02:48 +00:00
- curl -OL https://github.com/google/protobuf/releases/download/v3.4.0/protoc-3.4.0-linux-x86_64.zip
2019-01-21 23:07:28 +00:00
- unzip protoc-3.4.0-linux-x86_64.zip -d protoc3
2019-01-21 23:02:48 +00:00
- sudo mv protoc3/bin/* /usr/local/bin/
- sudo mv protoc3/include/* /usr/local/include/
- sudo chown $USER /usr/local/bin/protoc
- sudo chown -R $USER /usr/local/include/google
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
2018-12-05 23:05:03 +00:00
script:
2019-02-13 05:16:41 +00:00
- cargo build --verbose --all --manifest-path lighthouse-beacon/Cargo.toml
- cargo build --verbose --all --manifest-path lighthouse-validator/Cargo.toml
- cargo build --verbose --all --manifest-path lighthouse-libs/Cargo.toml
- cargo test --verbose --all --manifest-path lighthouse-beacon/Cargo.toml
- cargo test --verbose --all --manifest-path lighthouse-validator/Cargo.toml
- cargo test --verbose --all --manifest-path lighthouse-libs/Cargo.toml
2018-07-12 05:04:02 +00:00
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
fast_finish: true
install:
2019-01-10 21:05:50 +00:00
- rustup component add rustfmt