-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move travis from cd to pushd/popd to try and fix build tests
- Loading branch information
1 parent
d0db997
commit a54cfc9
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
language: rust | ||
|
||
script: | ||
- cd cfn-guard && cargo build --verbose --all && cargo test --verbose --all | ||
- cd cfn-guard-lambda && cargo build --verbose --all && cargo test --verbose --all | ||
- cd cfn-guard-rulegen && cargo build --verbose --all && cargo test --verbose --all | ||
- cd cfn-guard-rulegen-lambda && cargo build --verbose --all && cargo test --verbose --all | ||
- pushd cfn-guard && cargo build --verbose --all && cargo test --verbose --all; popd | ||
- pushd cfn-guard-lambda && cargo build --verbose --all && cargo test --verbose --all; popd | ||
- pushd cfn-guard-rulegen && cargo build --verbose --all && cargo test --verbose --all; popd | ||
- pushd cfn-guard-rulegen-lambda && cargo build --verbose --all && cargo test --verbose --all; popd |