From 93aabd333357765e51b3d62ea14adc16badf9a7a Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Fri, 8 Nov 2024 12:33:33 +0900 Subject: [PATCH] Backport: github: try to use more customized labels (LTS) (#720) Currently, it is bit hard to distinct each Test jobs on fluent-package-builder/actions/runs page. This is because Test (CGroup V1) matrix.label matrix.test-file is shown by default. This commit try to make it more visibility on that page. ref. https://github.com/fluent/fluent-package-builder/pull/684 Signed-off-by: Kentaro Hayashi --- .github/workflows/apt.yml | 24 ++++++++++++------------ .github/workflows/yum.yml | 4 ++-- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/apt.yml b/.github/workflows/apt.yml index 8586839cb..24a765af5 100644 --- a/.github/workflows/apt.yml +++ b/.github/workflows/apt.yml @@ -13,16 +13,16 @@ jobs: fail-fast: false matrix: label: - - Debian GNU/Linux bullseye amd64 - - Debian GNU/Linux bookworm amd64 + - Debian bullseye amd64 + - Debian bookworm amd64 - Ubuntu Focal amd64 - Ubuntu Jammy amd64 - Ubuntu Noble amd64 include: - - label: Debian GNU/Linux bullseye amd64 + - label: Debian bullseye amd64 rake-job: debian-bullseye test-docker-image: debian:bullseye - - label: Debian GNU/Linux bookworm amd64 + - label: Debian bookworm amd64 rake-job: debian-bookworm test-docker-image: debian:bookworm - label: Ubuntu Focal amd64 @@ -112,7 +112,7 @@ jobs: ${{ matrix.test-docker-image }} \ /fluentd/fluent-package/apt/binstubs-test.sh test: - name: Test + name: Test ${{ matrix.label }} ${{ matrix.test-file }} needs: build runs-on: ubuntu-latest timeout-minutes: 15 @@ -120,8 +120,8 @@ jobs: fail-fast: false matrix: label: - - Debian GNU/Linux bullseye amd64 - - Debian GNU/Linux bookworm amd64 + - Debian bullseye amd64 + - Debian bookworm amd64 - Ubuntu Focal amd64 - Ubuntu Jammy amd64 - Ubuntu Noble amd64 @@ -133,10 +133,10 @@ jobs: - "install-newly.sh v5" - "install-newly.sh lts" include: - - label: Debian GNU/Linux bullseye amd64 + - label: Debian bullseye amd64 rake-job: debian-bullseye test-lxc-image: images:debian/11 - - label: Debian GNU/Linux bookworm amd64 + - label: Debian bookworm amd64 rake-job: debian-bookworm test-lxc-image: images:debian/12 - label: Ubuntu Focal amd64 @@ -149,11 +149,11 @@ jobs: rake-job: ubuntu-noble test-lxc-image: ubuntu:24.04 exclude: - - label: Debian GNU/Linux bookworm amd64 + - label: Debian bookworm amd64 test-file: update-from-v4.sh - - label: Debian GNU/Linux bookworm amd64 + - label: Debian bookworm amd64 test-file: update-to-next-version-with-backward-compat-for-v4.sh - - label: Debian GNU/Linux bookworm amd64 + - label: Debian bookworm amd64 test-file: downgrade-to-v4.sh - label: Ubuntu Noble amd64 test-file: update-from-v4.sh diff --git a/.github/workflows/yum.yml b/.github/workflows/yum.yml index 4fa3d0aa1..53458ba00 100644 --- a/.github/workflows/yum.yml +++ b/.github/workflows/yum.yml @@ -86,7 +86,7 @@ jobs: ${{ matrix.test-docker-image }} \ /fluentd/fluent-package/yum/binstubs-test.sh v1test: - name: Test (CGroup V1) + name: Test ${{ matrix.label }} ${{ matrix.test-file }} (CGroup V1) needs: build runs-on: ubuntu-20.04 timeout-minutes: 15 @@ -131,7 +131,7 @@ jobs: run: fluent-package/yum/systemd-test/test.sh ${{ matrix.test-lxc-image }} ${{ matrix.test-file }} v2test: - name: Test (CGroup V2) + name: Test ${{ matrix.label }} ${{ matrix.test-file }} (CGroup V2) needs: build runs-on: ubuntu-latest timeout-minutes: 15