From e4cf21086c4691fb17e1bacb8542204b423fa411 Mon Sep 17 00:00:00 2001 From: theduke Date: Sun, 3 Dec 2017 11:23:43 +0100 Subject: [PATCH] (ci) Stop using cargo-make on appveyor. Neccessary due to failing builds... --- appveyor.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index b65f8567..6d6a0df8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -49,4 +49,9 @@ install: build: false test_script: - - cargo make workspace-ci-flow --no-workspace + - cd juniper && cargo build --verbose && cargo test --verbose && cd .. + - cd juniper_codegen && cargo build --verbose && cargo test --verbose && cd .. + - cd juniper_tests && cargo build --verbose && cargo test --verbose && cd .. + - cd juniper_iron && cargo build --verbose && cargo test --verbose && cd .. + - IF NOT %TARGET% == %TARGET:msvc=% ( IF %CHANNEL% == "nightly" ( cd juniper_rocket && cargo test --verbose && cargo build --verbose && cd .. ) ) +