From 122bdb3c0b8c8adf6ad6ce0dd2cfeea823854e0e Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Wed, 13 Feb 2019 16:16:41 +1100 Subject: [PATCH] Update travis to test all components --- .travis.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index d43d21a005..860c0f19cb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,9 +7,15 @@ before_install: - sudo chown $USER /usr/local/bin/protoc - sudo chown -R $USER /usr/local/include/google script: - - cargo build --verbose --all - - cargo test --verbose --all - - cargo fmt --all -- --check + - 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 + - cargo fmt --all -- --check --manifest-path lighthouse-beacon/Cargo.toml + - cargo fmt --all -- --check --manifest-path lighthouse-validator/Cargo.toml + - cargo fmt --all -- --check --manifest-path lighthouse-libs/Cargo.toml rust: - stable - beta