From 6d1d44137241d243c0baf204450c22046c11db98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Wed, 23 Oct 2019 02:19:21 +0200 Subject: [PATCH] Check with nightly image; remove zsh-ism MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 03d7c4c5..e13f66b1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,8 +33,9 @@ variables: rustfmt: stage: lint + image: rustlang/rust:nightly script: - - rustfmt --check --edition 2018 **/*.rs + - find -type f -iname '*.rs' -not -path './target/*' | xargs rustfmt --check --edition 2018 rust-latest-build: extends: