From 465e8cf2c5354f059f0ca53bc071e8a3063ca3a7 Mon Sep 17 00:00:00 2001 From: Brian Seeders Date: Fri, 3 Nov 2023 10:56:56 -0400 Subject: [PATCH] [ci] Add rocky-9 to matrix in packaging and platform jobs (#101653) (cherry picked from commit a36156e1e64a9237c390b195be447dbdcb47e0d8) --- .../pipelines/periodic-packaging.template.yml | 1 + .buildkite/pipelines/periodic-packaging.yml | 1 + .../pipelines/periodic-platform-support.yml | 1 + .../pull-request/packaging-tests-unix.yml | 71 ++++++++++++++++--- 4 files changed, 65 insertions(+), 9 deletions(-) diff --git a/.buildkite/pipelines/periodic-packaging.template.yml b/.buildkite/pipelines/periodic-packaging.template.yml index 8447800abdcae..8ce498c541dd6 100644 --- a/.buildkite/pipelines/periodic-packaging.template.yml +++ b/.buildkite/pipelines/periodic-packaging.template.yml @@ -19,6 +19,7 @@ steps: - ubuntu-2004 - ubuntu-2204 - rocky-8 + - rocky-9 - rhel-7 - rhel-8 - rhel-9 diff --git a/.buildkite/pipelines/periodic-packaging.yml b/.buildkite/pipelines/periodic-packaging.yml index c20d42f0509de..6caf739af2748 100644 --- a/.buildkite/pipelines/periodic-packaging.yml +++ b/.buildkite/pipelines/periodic-packaging.yml @@ -20,6 +20,7 @@ steps: - ubuntu-2004 - ubuntu-2204 - rocky-8 + - rocky-9 - rhel-7 - rhel-8 - rhel-9 diff --git a/.buildkite/pipelines/periodic-platform-support.yml b/.buildkite/pipelines/periodic-platform-support.yml index 056b6e38aa895..5f7658522c497 100644 --- a/.buildkite/pipelines/periodic-platform-support.yml +++ b/.buildkite/pipelines/periodic-platform-support.yml @@ -19,6 +19,7 @@ steps: - ubuntu-2004 - ubuntu-2204 - rocky-8 + - rocky-9 - rhel-7 - rhel-8 - rhel-9 diff --git a/.buildkite/pipelines/pull-request/packaging-tests-unix.yml b/.buildkite/pipelines/pull-request/packaging-tests-unix.yml index ec2e29b284781..d5c937aa4b5a2 100644 --- a/.buildkite/pipelines/pull-request/packaging-tests-unix.yml +++ b/.buildkite/pipelines/pull-request/packaging-tests-unix.yml @@ -3,9 +3,9 @@ config: steps: - group: packaging-tests-unix steps: - - label: "{{matrix.image}} / {{matrix.PACKAGING_TASK}} / packaging-tests-unix" - key: "packaging-tests-unix" - command: ./.ci/scripts/packaging-test.sh $$PACKAGING_TASK + - label: "{{matrix.image}} / docker / packaging-tests-unix" + key: "packaging-tests-unix-docker" + command: ./.ci/scripts/packaging-test.sh destructiveDistroTest.docker timeout_in_minutes: 300 matrix: setup: @@ -22,18 +22,71 @@ steps: - ubuntu-2004 - ubuntu-2204 - rocky-8 + - rocky-9 + - rhel-7 + - rhel-8 + - rhel-9 + - almalinux-8 + agents: + provider: gcp + image: family/elasticsearch-{{matrix.image}} + diskSizeGb: 350 + machineType: custom-16-32768 + - label: "{{matrix.image}} / packages / packaging-tests-unix" + key: "packaging-tests-unix-packages" + command: ./.ci/scripts/packaging-test.sh destructiveDistroTest.packages + timeout_in_minutes: 300 + matrix: + setup: + image: + - centos-7 + - debian-10 + - debian-11 + - opensuse-leap-15 + - oraclelinux-7 + - oraclelinux-8 + - sles-12 + - sles-15 + - ubuntu-1804 + - ubuntu-2004 + - ubuntu-2204 + - rocky-8 + - rocky-9 + - rhel-7 + - rhel-8 + - rhel-9 + - almalinux-8 + agents: + provider: gcp + image: family/elasticsearch-{{matrix.image}} + diskSizeGb: 350 + machineType: custom-16-32768 + - label: "{{matrix.image}} / archives / packaging-tests-unix" + key: "packaging-tests-unix-archives" + command: ./.ci/scripts/packaging-test.sh destructiveDistroTest.archives + timeout_in_minutes: 300 + matrix: + setup: + image: + - centos-7 + - debian-10 + - debian-11 + - opensuse-leap-15 + - oraclelinux-7 + - oraclelinux-8 + - sles-12 + - sles-15 + - ubuntu-1804 + - ubuntu-2004 + - ubuntu-2204 + - rocky-8 + - rocky-9 - rhel-7 - rhel-8 - rhel-9 - almalinux-8 - PACKAGING_TASK: - - destructiveDistroTest.docker - - destructiveDistroTest.packages - - destructiveDistroTest.archives agents: provider: gcp image: family/elasticsearch-{{matrix.image}} diskSizeGb: 350 machineType: custom-16-32768 - env: - PACKAGING_TASK: "{{matrix.PACKAGING_TASK}}"