From b5bc8502071064c3f6434c3280b951003695fcf6 Mon Sep 17 00:00:00 2001 From: Kai Kriegel Date: Thu, 17 Sep 2020 13:07:04 +0000 Subject: [PATCH] don't try to build rust on windows --- .gitlab-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 618b990..deaa054 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,6 +33,9 @@ lint:clippy: - master - development - merge_requests + tags: + - linux + - docker # Use rustfmt to check formating of the project lint:fmt: @@ -44,6 +47,9 @@ lint:fmt: - master - development - merge_requests + tags: + - linux + - docker # Use cargo to test the project test:cargo: @@ -54,6 +60,9 @@ test:cargo: - master - development - merge_requests + tags: + - linux + - docker # cache dependencies and build environment to speed up setup