File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,11 @@ permissions:
1515
1616jobs :
1717 build-test :
18- runs-on : ubuntu-latest
1918 strategy :
2019 matrix :
2120 flavor : ["cpp", "rust"]
21+ runner : ["ubuntu-latest", "ubuntu-24.04-arm"]
22+ runs-on : ${{ matrix.runner }}
2223 steps :
2324 # While the docker/build-push-action works from the Git context, we still need
2425 # the checkout step for running our tests.
3031 with :
3132 file : .devcontainer/${{ matrix.flavor }}/Dockerfile
3233 load : true
33- tags : ${{ github.repository }}-${{ matrix.flavor }}:test
34- cache-from : type=gha,scope=${{ github.repository }}-${{ matrix.flavor }}
34+ tags : ${{ github.repository }}-${{ matrix.flavor }}-${{ matrix.runner }} :test
35+ cache-from : type=gha,scope=${{ github.repository }}-${{ matrix.flavor }}-${{ matrix.runner }}
3536 - uses : actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
3637 if : matrix.flavor == 'cpp'
3738 with :
4647 - uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
4748 if : always()
4849 with :
49- name : test-results-${{ matrix.flavor }}
50+ name : test-results-${{ matrix.flavor }}-${{ matrix.runner }}
5051 path : test-report-*.xml
5152 publish-test :
5253 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments