From 8dd89002a6b5d965694b94402bb91e50802ebf97 Mon Sep 17 00:00:00 2001 From: Maaz Ahmed <maaz.a@subcom.tech> Date: Fri, 15 Dec 2023 07:03:09 +0000 Subject: [PATCH] ci: add tags --- .gitlab-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9112872..6c9c36d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,12 +4,16 @@ stages: - publish build: + tags: + - linux stage: build image: rust:latest script: - cargo build rustdoc: + tags: + - linux stage: build image: rust:latest script: @@ -19,18 +23,24 @@ rustdoc: - target/doc unit-test: + tags: + - linux stage: test image: rust:latest script: - cargo test --lib lint-test: + tags: + - linux stage: test image: rust:latest script: - cargo clippy docs: + tags: + - linux stage: publish image: alpine dependencies: -- GitLab