Skip to content

Commit 4451a65

Browse files
committed
Skip explicit run of cargo build on CI
Running `cargo test` produces a set of normal build artifacts in addition to test versions of each. (That is, running `cargo build` after `cargo test` is a no-op.) By removing the explicit `cargo build` invocation the test dependencies can begin building in parallel a bit sooner.
1 parent 404c1e6 commit 4451a65

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,13 @@ matrix:
6060
script:
6161
- cargo fmt -- --check
6262
- cargo clippy --all-targets --all-features --all
63-
- cargo build
6463
- cargo test
6564
- npm test
6665
- rust: beta
6766
script:
68-
- cargo build
6967
- cargo test
7068
- rust: nightly
7169
script:
72-
- cargo build
7370
- cargo test
7471

7572
notifications:

0 commit comments

Comments
 (0)