Skip to content

Commit 9132f74

Browse files
committed
Use Linux ARM runners.
1 parent c024121 commit 9132f74

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/test.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ jobs:
6060
- name: Test GORM
6161
shell: bash
6262
run: gormlite/test.sh
63+
if: matrix.os != 'windows-latest'
6364

6465
- name: Test modules
6566
shell: bash
@@ -193,9 +194,6 @@ jobs:
193194
- name: Test 386 (32-bit)
194195
run: GOARCH=386 go test -v -short ./...
195196

196-
- name: Test arm64 (compiler)
197-
run: GOARCH=arm64 go test -v -short ./...
198-
199197
- name: Test riscv64 (interpreter)
200198
run: GOARCH=riscv64 go test -v -short ./...
201199

@@ -205,6 +203,18 @@ jobs:
205203
- name: Test s390x (big-endian)
206204
run: GOARCH=s390x go test -v -short -tags sqlite3_dotlk ./...
207205

206+
test-linuxarm:
207+
runs-on: ubuntu-24.04-arm
208+
needs: test
209+
210+
steps:
211+
- uses: actions/checkout@v4
212+
- uses: actions/setup-go@v5
213+
with: { go-version: stable }
214+
215+
- name: Test
216+
run: go test -v ./...
217+
208218
test-macintel:
209219
runs-on: macos-13
210220
needs: test

0 commit comments

Comments
 (0)