From a3c434e5d0fc536e9137ba4e1e5a619d8d2c6c19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Chlup?= Date: Tue, 18 Mar 2025 16:50:34 +0100 Subject: [PATCH] ci: Run maintainer-mode job on the latest and the oldest supported httpd --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d6b6a5e..7a547196 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -104,8 +104,12 @@ jobs: make-httpd-maintainer-mode: runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + image-tag: [ "latest", "oldest-supported" ] container: - image: quay.io/mod_cluster/ci-httpd-dev + image: quay.io/mod_cluster/ci-httpd-dev:${{ matrix.image-tag }} defaults: run: shell: bash @@ -114,6 +118,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Print httpd version + run: echo $HTTPD_VERSION - name: Build run: | cd native