(tests) Only build juniper_rocket on nightly
This commit is contained in:
parent
4d6a99fe4e
commit
00e80bbe88
2 changed files with 19 additions and 1 deletions
18
juniper_rocket/Makefile.toml
Normal file
18
juniper_rocket/Makefile.toml
Normal 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 = []
|
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue