From f420cbbf4a49ac70ff1e27439eb8d5a841995025 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 12 May 2020 22:10:08 +0000 Subject: [PATCH] kola: Avoid losing "external" tag This is a regression from https://github.com/coreos/coreos-assembler/pull/1440 which is breaking the Ignition CI here https://jenkins-coreos-ci.apps.ci.centos.org/job/github-ci/job/coreos/job/ignition/job/PR-968/35/console --- mantle/kola/harness.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mantle/kola/harness.go b/mantle/kola/harness.go index a2f8d7061f..8a041e5251 100644 --- a/mantle/kola/harness.go +++ b/mantle/kola/harness.go @@ -585,7 +585,7 @@ RequiredBy=multi-user.target } else { t.Distros = strings.Fields(meta.Distros) } - t.Tags = strings.Fields(meta.Tags) + t.Tags = append(t.Tags, strings.Fields(meta.Tags)...) register.RegisterTest(t)