@@ -33,31 +33,31 @@ jobs:
3333 - name : Build and Run tests
3434 run : make
3535
36- test-arm64 :
37- runs-on : ubuntu-latest
38- name : Test on ${{ matrix.distro }} ${{ matrix.arch }}
39- strategy :
40- matrix :
41- include :
42- - arch : arm64
43- distro : ubuntu24.04
44- steps :
45- - uses : actions/checkout@v2
46- - uses : uraimo/run-on-arch-action@master
47- with :
48- arch : ${{ matrix.arch }}
49- distro : ${{ matrix.distro }}
50- install : |
51- apt-get update
52- apt install -y curl wget make gcc
53- latestGo=$(curl "https://golang.org/VERSION?m=text")
54- wget --quiet "https://dl.google.com/go/${latestGo}.linux-${{ matrix.arch }}.tar.gz"
55- rm -f $(which go)
56- rm -rf /usr/local/go
57- tar -C /usr/local -xzf "${latestGo}.linux-${{ matrix.arch }}.tar.gz"
58- run : |
59- export PATH=/usr/local/go/bin:$PATH
60- export PATH=~/go/bin:$PATH
61- printf "Go Version: $(go version)\n"
62- go install golang.org/x/lint/golint@latest
63- make
36+ # test-arm64:
37+ # runs-on: ubuntu-latest
38+ # name: Test on ${{ matrix.distro }} ${{ matrix.arch }}
39+ # strategy:
40+ # matrix:
41+ # include:
42+ # - arch: arm64
43+ # distro: ubuntu24.04
44+ # steps:
45+ # - uses: actions/checkout@v2
46+ # - uses: uraimo/run-on-arch-action@master
47+ # with:
48+ # arch: ${{ matrix.arch }}
49+ # distro: ${{ matrix.distro }}
50+ # install: |
51+ # apt-get update
52+ # apt install -y curl wget make gcc
53+ # latestGo=$(curl "https://golang.org/VERSION?m=text")
54+ # wget --quiet "https://dl.google.com/go/${latestGo}.linux-${{ matrix.arch }}.tar.gz"
55+ # rm -f $(which go)
56+ # rm -rf /usr/local/go
57+ # tar -C /usr/local -xzf "${latestGo}.linux-${{ matrix.arch }}.tar.gz"
58+ # run: |
59+ # export PATH=/usr/local/go/bin:$PATH
60+ # export PATH=~/go/bin:$PATH
61+ # printf "Go Version: $(go version)\n"
62+ # go install golang.org/x/lint/golint@latest
63+ # make
0 commit comments