Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d43c608

Browse files
committedNov 24, 2024·
trim platform
1 parent a0233b4 commit d43c608

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
 

‎.github/workflows/build_backend.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,17 @@ jobs:
3939
release-backend:
4040
needs: [test]
4141
runs-on: ubuntu-latest
42-
timeout-minutes: 1440
4342
strategy:
4443
matrix:
4544
architecture:
4645
- arch: linux/arm/v7
4746
dockerfile: Dockerfile
4847
tag: armv7
48+
platform: arm
4949
- arch: linux/arm64
5050
dockerfile: Dockerfile.arm64
5151
tag: arm64
52+
platform: arm64
5253
steps:
5354
- name: Docker meta
5455
id: meta
@@ -70,7 +71,9 @@ jobs:
7071
type=sha,enable=true,prefix=git-,format=short,suffix=-${{ matrix.architecture.tag }}
7172
- uses: actions/checkout@v3 # Checking out the repo
7273
- name: Set up QEMU
73-
uses: docker/setup-qemu-action@v2
74+
uses: docker/setup-qemu-action@v3
75+
with:
76+
platforms: ${{ matrix.architecture.platform }}
7477
- name: Set up Docker Buildx
7578
id: buildx
7679
uses: docker/setup-buildx-action@v2

0 commit comments

Comments
 (0)
Please sign in to comment.