Skip to content

Commit

Permalink
build: At least try building for a 32-bit target as part of CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Yawning committed Jul 22, 2021
1 parent f38f8e8 commit e10f9a3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ jobs:
with:
go-version: "1.16.x"
- name: Run 32 bit tests
run: go test ./... -tags=force32bit
run: |
go test ./... -tags=force32bit
GOARCH=arm go build ./...
- name: Run 64 bit tests
run: go test ./... -tags=force64bit
- name: Run noasm tests
Expand Down

0 comments on commit e10f9a3

Please sign in to comment.