We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9d8a81 commit abdaeecCopy full SHA for abdaeec
.travis.yml
@@ -1,4 +1,5 @@
1
language: rust
2
+cache: cargo
3
4
rust:
5
- stable
@@ -11,8 +12,17 @@ matrix:
11
12
13
script:
14
- cargo build --verbose
- - cargo build --features iron-handlers --verbose
15
+ - cargo build --verbose --release
16
+
17
+ - cargo build --verbose --features iron-handlers
18
+ - cargo build --verbose --features iron-handlers --release
19
20
- cargo test --verbose --features iron-handlers
21
+ - cargo test --verbose --features iron-handlers --release
22
23
+before_cache:
24
+ rm -rf target/debug/juniper*
25
+ rm -rf target/release/juniper*
26
27
after_success: |
28
if [ "$TRAVIS_BRANCH" = master -a "$TRAVIS_PULL_REQUEST" = false -a "$TRAVIS_RUST_VERSION" = stable ]; then
0 commit comments