support/misc/gitlab-ci.yml.in: only specify a single tag

The tags specified by a job are ANDed, not ORed. So with

.runner-small:
    tags:
        - buildroot-runner
        - saas-linux-small-amd64

the job will only run on a runner that has _both_ tags - so only on the
buildroot runner. That makes it pretty pointless.

Remove all the buildroot-runner tags, except in the
.runner-buildroot-runner-only template.

Signed-off-by: Arnout Vandecappelle <arnout@rnout.be>
This commit is contained in:
Arnout Vandecappelle
2026-05-29 19:02:13 +02:00
parent c0922004d8
commit 825abb2682

View File

@@ -7,27 +7,22 @@ before_script:
.runner-small:
tags:
- buildroot-runner
- saas-linux-small-amd64
.runner-medium:
tags:
- buildroot-runner
- saas-linux-medium-amd64
.runner-large:
tags:
- buildroot-runner
- saas-linux-large-amd64
.runner-xlarge:
tags:
- buildroot-runner
- saas-linux-xlarge-amd64
.runner-2xlarge:
tags:
- buildroot-runner
- saas-linux-2xlarge-amd64
.runner-buildroot-runner-only: