Skip to content

Commit

Permalink
Move travis from cd to pushd/popd to try and fix build tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanataws committed Aug 28, 2020
1 parent d0db997 commit a54cfc9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
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

0 comments on commit a54cfc9

Please sign in to comment.