From 75cb610764a6749ac5fe2e1dea4a54d9be7cbdd1 Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Wed, 18 Dec 2024 14:02:14 +0100 Subject: [PATCH] gitlab: run all versions of filesystem.sh Run filesystem.sh with all the valid arguments for the customization type. --- .gitlab-ci.yml | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5c4b04ccc5..83adc2bbb8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -519,12 +519,29 @@ filesystem.sh: extends: .integration parallel: matrix: - - RUNNER: - - aws/fedora-40-x86_64 - - *rhel_runners - + - CUSTOMIZATION_TYPE: "disk-btrfs" + RUNNER: + - aws/fedora-40-x86_64 + - CUSTOMIZATION_TYPE: "filesystem" + RUNNER: + - aws/rhel-8.10-ga-x86_64 + - CUSTOMIZATION_TYPE: "disk-plain" + RUNNER: + - aws/rhel-9.4-ga-x86_64 + - CUSTOMIZATION_TYPE: "disk-lvm" + RUNNER: + - aws/rhel-9.6-nightly-x86_64 + - CUSTOMIZATION_TYPE: "disk-plain" + RUNNER: + - aws/rhel-10.0-nightly-x86_64 + - CUSTOMIZATION_TYPE: "disk-lvm" + RUNNER: + - aws/centos-stream-9-x86_64 + - CUSTOMIZATION_TYPE: "filesystem" + RUNNER: + - aws/centos-stream-10-x86_64 variables: - SCRIPT: filesystem.sh + SCRIPT: filesystem.sh ${CUSTOMIZATION_TYPE} cross-distro.sh: extends: .integration