From 74f56dad079f950a04face368f56757f4b53303d Mon Sep 17 00:00:00 2001 From: armfazh Date: Mon, 7 Oct 2024 16:47:11 -0700 Subject: [PATCH] Reverting arm64 jobs since qemu can't run go1.23 binaries yet. See: https://github.com/golang/go/issues/69259 --- .github/workflows/ci-actions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-actions.yml b/.github/workflows/ci-actions.yml index 88869975..fd10e7b4 100644 --- a/.github/workflows/ci-actions.yml +++ b/.github/workflows/ci-actions.yml @@ -47,7 +47,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - CFG: [[arm64, arm64v8, '1.23']] + CFG: [[arm64, arm64v8, '1.22']] steps: - uses: actions/checkout@v4 - name: Enabling Docker Experimental @@ -61,7 +61,7 @@ jobs: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes - name: Testing run: | - 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 ./... build_modes: needs: [amd64_job] runs-on: ubuntu-22.04