From 8e7cd11bc09667bf542856de1c4a1a380221c9cf Mon Sep 17 00:00:00 2001 From: jD91mZM2 Date: Thu, 28 Jun 2018 08:07:12 +0200 Subject: [PATCH] Fix CI --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ad1d6b1742..e38d132959 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,7 @@ image: "rust:latest" before_script: + - git submodule update --init --recursive - rustup toolchain add nightly - rustup target add x86_64-unknown-redox --toolchain nightly - rustup show # Print version info for debugging @@ -19,7 +20,8 @@ test:linux: fmt: script: - - ./fmt.sh -- --write-mode=diff + - rustup component add rustfmt-preview + - ./fmt.sh -- --check # TODO: Set up a docker image with a redox vm that would allow to -# run things like tests under redox \ No newline at end of file +# run things like tests under redox