v09 build fix for windows (#115)

Fix cargo make makefiles for only running the juniper_rocket build on nightly.
This commit is contained in:
Sagie Gur-Ari 2017-12-03 11:31:56 +02:00 committed by theduke
parent 00e80bbe88
commit 9e424a8630
2 changed files with 4 additions and 18 deletions

4
Makefile.toml Normal file
View file

@ -0,0 +1,4 @@
[tasks.init]
condition = { channels = ["beta", "stable"] }
env = { "CARGO_MAKE_WORKSPACE_SKIP_MEMBERS" = "juniper_rocket;juniper_tests" }

View file

@ -1,18 +0,0 @@
[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 = []