We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab15f82 commit 2ba992fCopy full SHA for 2ba992f
.github/workflows/ci-actions.yml
@@ -47,7 +47,7 @@ jobs:
47
runs-on: ubuntu-22.04
48
strategy:
49
matrix:
50
- CFG: [[arm64, arm64v8, '1.23']]
+ CFG: [[arm64, arm64v8, '1.22']]
51
steps:
52
- uses: actions/checkout@v4
53
- name: Enabling Docker Experimental
@@ -61,7 +61,7 @@ jobs:
61
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
62
- name: Testing
63
run: |
64
- docker run --rm -v `pwd`:`pwd` -w `pwd` ${{matrix.CFG[1]}}/golang:${{matrix.CFG[2]}} go test -v ./...
+ docker run --rm --platform linux/${{matrix.CFG[0]}} -v `pwd`:`pwd` -w `pwd` ${{matrix.CFG[1]}}/golang:${{matrix.CFG[2]}} go test -v ./...
65
build_modes:
66
needs: [amd64_job]
67
0 commit comments