Skip to content

Commit

Permalink
Use Linux ARM runners.
Browse files Browse the repository at this point in the history
  • Loading branch information
ncruces committed Jan 17, 2025
1 parent c024121 commit 91dd15c
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,6 @@ jobs:
- name: Test 386 (32-bit)
run: GOARCH=386 go test -v -short ./...

- name: Test arm64 (compiler)
run: GOARCH=arm64 go test -v -short ./...

- name: Test riscv64 (interpreter)
run: GOARCH=riscv64 go test -v -short ./...

Expand All @@ -209,6 +206,18 @@ jobs:
runs-on: macos-13
needs: test

steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with: { go-version: stable }

- name: Test
run: go test -v ./...

test-linuxarm:
runs-on: ubuntu-24.04-arm
needs: test

steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
Expand Down

0 comments on commit 91dd15c

Please sign in to comment.