From 8d6a08d2dc106903a1cbab504243fede1095711a Mon Sep 17 00:00:00 2001 From: Hongli Lai Date: Tue, 17 Sep 2024 17:29:40 +0200 Subject: [PATCH] Use ARM64 runners for Debian and RPM tests --- .github/workflows/debian.yml | 6 +++--- .github/workflows/rpm.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml index f730c573c3..219dc7acda 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -35,8 +35,8 @@ jobs: runs-on: ${{ matrix.arch.runner }} env: WORKSPACE: ${{ github.workspace }} - ARCHITECTURE: ${{ matrix.arch }} - CACHE_DIR: ${{ github.workspace }}/cache/debian-test/${{ matrix.distro }}-${{ matrix.arch }} + ARCHITECTURE: ${{ matrix.arch.name }} + CACHE_DIR: ${{ github.workspace }}/cache/debian-test/${{ matrix.distro }}-${{ matrix.arch.name }} DISTRIBUTION: ${{ matrix.distro }} steps: - uses: actions/checkout@v4 @@ -47,5 +47,5 @@ jobs: - run: ./dev/ci/tests/debian/run - uses: actions/upload-artifact@v4 with: - name: debian-${{ matrix.distro }}-${{ matrix.arch }} + name: debian-${{ matrix.distro }}-${{ matrix.arch.name }} path: 'output/${{ matrix.distro }}/*' diff --git a/.github/workflows/rpm.yml b/.github/workflows/rpm.yml index ac117973eb..0ada8287a0 100644 --- a/.github/workflows/rpm.yml +++ b/.github/workflows/rpm.yml @@ -35,8 +35,8 @@ jobs: runs-on: ${{ matrix.arch.runner }} env: WORKSPACE: ${{ github.workspace }} - ARCHITECTURE: ${{ matrix.arch }} - CACHE_DIR: ${{ github.workspace }}/cache/rpm-test/${{ matrix.distro }}-${{ matrix.arch }} + ARCHITECTURE: ${{ matrix.arch.name }} + CACHE_DIR: ${{ github.workspace }}/cache/rpm-test/${{ matrix.distro }}-${{ matrix.arch.name }} DISTRIBUTION: ${{ matrix.distro }} steps: - uses: actions/checkout@v4 @@ -47,5 +47,5 @@ jobs: - run: ./dev/ci/tests/rpm/run - uses: actions/upload-artifact@v4 with: - name: rpm-${{ matrix.distro }}-${{ matrix.arch }} + name: rpm-${{ matrix.distro }}-${{ matrix.arch.name }} path: 'output/${{ matrix.distro }}/*'