diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index ad10d03..d57551d 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -53,6 +53,7 @@ jobs: fail-fast: false matrix: runs-on: [[ubuntu-22.04], [self-hosted, jammy, ARM64]] + architecture: [amd64, arm64] needs: - lint steps: @@ -66,7 +67,7 @@ jobs: - name: Upload the built snap uses: actions/upload-artifact@v4 with: - name: SNAP_FILE + name: snap_${{ matrix.architecture }} path: dcgm*.snap func: @@ -77,6 +78,7 @@ jobs: fail-fast: false matrix: runs-on: [[ubuntu-22.04], [self-hosted, jammy, ARM64]] + architecture: [amd64, arm64] steps: - uses: actions/checkout@v4 with: @@ -85,7 +87,7 @@ jobs: - name: Download the built snap uses: actions/download-artifact@v4 with: - name: SNAP_FILE + name: snap_${{ matrix.architecture }} - name: Set up Python 3.10 uses: actions/setup-python@v5