From e89d02f8f9a5ef623767a099d98ed54ded1b9cea Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Mon, 29 Jan 2024 10:27:41 -0500 Subject: [PATCH 1/2] CI: Add aarch64 to multiarch tests Signed-off-by: Stephen Gallagher --- .github/workflows/multiarch.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/multiarch.yaml b/.github/workflows/multiarch.yaml index a289e6a8..1682b4e3 100644 --- a/.github/workflows/multiarch.yaml +++ b/.github/workflows/multiarch.yaml @@ -11,6 +11,8 @@ jobs: strategy: matrix: include: + - arch: aarch64 + distro: fedora_latest - arch: ppc64le distro: fedora_latest - arch: s390x From d28fba063785516ce75089a174914f6bf98c2eef Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Mon, 29 Jan 2024 10:28:02 -0500 Subject: [PATCH 2/2] CI: Drop ppc64le and s390x from multiarch tests Support was dropped from the action we were using for this. Signed-off-by: Stephen Gallagher --- .github/workflows/multiarch.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/multiarch.yaml b/.github/workflows/multiarch.yaml index 1682b4e3..4c267b88 100644 --- a/.github/workflows/multiarch.yaml +++ b/.github/workflows/multiarch.yaml @@ -13,10 +13,6 @@ jobs: include: - arch: aarch64 distro: fedora_latest - - arch: ppc64le - distro: fedora_latest - - arch: s390x - distro: fedora_latest steps: - uses: actions/checkout@v4