From 0e398c77eccbbe7e699e5bed7a1890d2fff44556 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Wed, 14 Dec 2022 10:48:36 +0000 Subject: [PATCH] CI: add tags to all jobs Tag all jobs with the DEFAULT_TAG variable so each instance can control what tags the jobs have, whilst still explicitly tagging the jobs which need specific tags (such as x86_64 for jobs which need to run x86-only binaries) Signed-off-by: Ross Burton --- .gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c367ccf5..8e3b5e6c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,6 +12,8 @@ stages: # Common job fragment to get a worker ready .setup: + tags: + - $DEFAULT_TAG stage: build interruptible: true variables: @@ -242,6 +244,8 @@ machine-coverage: script: - ./ci/check-machine-coverage coverage: '/Coverage: \d+/' + tags: + - x86_64 metrics: extends: .setup