From 6f0ca1d3a2a770e6969e97b96a4daf85ee148103 Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Thu, 30 Nov 2023 09:23:49 +0100 Subject: [PATCH] declare beaker_os as a var for better re-use --- pipelines/candlepin/03-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pipelines/candlepin/03-tests.yml b/pipelines/candlepin/03-tests.yml index 6fad95091..a6fb95d5f 100644 --- a/pipelines/candlepin/03-tests.yml +++ b/pipelines/candlepin/03-tests.yml @@ -13,6 +13,8 @@ environment: BEAKER_HYPERVISOR: "docker" BEAKER_provision: "yes" - BEAKER_setfile: "{{ pipeline_os | regex_replace('-stream', '') }}-64{hostname={{ pipeline_os | regex_replace('-stream', '') }}-64.example.com}" + BEAKER_setfile: "{{ beaker_os }}-64{hostname={{ beaker_os }}-64.example.com}" BEAKER_destroy: "no" BEAKER_FACTER_CANDLEPIN_VERSION: "{{ pipeline_version }}" + vars: + beaker_os: "{{ pipeline_os | regex_replace('-stream', '') }}"