From 9e424a8630d28135e743a999f1082497f1030dad Mon Sep 17 00:00:00 2001 From: Sagie Gur-Ari Date: Sun, 3 Dec 2017 11:31:56 +0200 Subject: [PATCH] v09 build fix for windows (#115) Fix cargo make makefiles for only running the juniper_rocket build on nightly. --- Makefile.toml | 4 ++++ juniper_rocket/Makefile.toml | 18 ------------------ 2 files changed, 4 insertions(+), 18 deletions(-) create mode 100644 Makefile.toml delete mode 100644 juniper_rocket/Makefile.toml diff --git a/Makefile.toml b/Makefile.toml new file mode 100644 index 00000000..559be3b7 --- /dev/null +++ b/Makefile.toml @@ -0,0 +1,4 @@ + +[tasks.init] +condition = { channels = ["beta", "stable"] } +env = { "CARGO_MAKE_WORKSPACE_SKIP_MEMBERS" = "juniper_rocket;juniper_tests" } diff --git a/juniper_rocket/Makefile.toml b/juniper_rocket/Makefile.toml deleted file mode 100644 index 5c624642..00000000 --- a/juniper_rocket/Makefile.toml +++ /dev/null @@ -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 = []