(tests) Only build juniper_rocket on nightly

This commit is contained in:
theduke 2017-12-02 23:37:40 +01:00
parent 4d6a99fe4e
commit 00e80bbe88
2 changed files with 19 additions and 1 deletions

View file

@ -0,0 +1,18 @@
[tasks.scoped-ci-flow]
description = "CI task will run cargo build and cargo test with verbose output"
dependencies = [
"pre-ci-flow",
"pre-build",
"build-verbose",
"post-build",
"pre-test",
"test-verbose",
"post-test",
"ci-coverage-flow",
"post-ci-flow"
]
[tasks.ci-flow]
condition = { channels = ["nightly"] }
run_task = "scoped-ci-flow"
dependencies = []

View file

@ -3,7 +3,7 @@ name = "juniper_tests"
version = "0.1.0"
[dependencies]
juniper = { path = "../juniper" }
juniper = { version = "0.9.0", path = "../juniper" }
serde_json = { version = "1" }
[dev-dependencies]