Skip to content

Enable ARM64 Workflow #3

Enable ARM64 Workflow

Enable ARM64 Workflow #3

Workflow file for this run

name: Test ARM64
on: [push, pull_request]
jobs:
run:
runs-on: actuated-arm64-8cpu-8gb
strategy:
fail-fast: false
matrix:
target:
- linux-arm64-unit-test-4-cpu-race
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.21.6"
- env:
TARGET: ${{ matrix.target }}
run: |
case "${TARGET}" in
linux-arm64-unit-test-4-cpu-race)
GOARCH=arm64 PASSES='unit' RACE='true' CPU='4' ./scripts/test.sh -p=2
;;
*)
echo "Failed to find target"
exit 1
;;
esac