We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
arm64
docker_cache
1 parent b77aae9 commit bcf7734Copy full SHA for bcf7734
.github/workflows/ci.yml
@@ -46,8 +46,18 @@ env:
46
47
jobs:
48
docker_cache:
49
- name: "Build Docker image"
50
- runs-on: ubuntu-latest
+ name: "Build ${{ matrix.arch }} Docker image"
+ runs-on: ${{ matrix.runner }}
51
+
52
+ strategy:
53
+ fail-fast: false
54
+ matrix:
55
+ include:
56
+ - arch: x64
57
+ runner: ubuntu-latest
58
+ - arch: arm64
59
+ runner: ubuntu-24.04-arm
60
61
steps:
62
- name: Set up Docker Buildx
63
uses: docker/setup-buildx-action@v3
@@ -60,7 +70,7 @@ jobs:
70
uses: docker/build-push-action@v5
71
with:
72
file: ./ci/linux-debian.Dockerfile
- tags: x64-debian-image
73
+ tags: ${{ matrix.arch }}-debian-image
64
74
cache-from: type=gha
65
75
cache-to: type=gha,mode=min
66
76
0 commit comments