(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"
|
version = "0.1.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
juniper = { path = "../juniper" }
|
juniper = { version = "0.9.0", path = "../juniper" }
|
||||||
serde_json = { version = "1" }
|
serde_json = { version = "1" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
Loading…
Add table
Reference in a new issue