Skip to content

Commit

Permalink
modified based on reviews
Browse files Browse the repository at this point in the history
Signed-off-by: tcchawla <[email protected]>
  • Loading branch information
tcchawla committed Jan 19, 2024
1 parent 031c6bd commit d3de5e2
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions .github/workflows/test_arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,21 @@ name: Test ARM64
on: [push, pull_request]
jobs:
run:
runs-on: actuated-arm64-8cpu-32gb
runs-on: actuated-arm64-8cpu-8gb
strategy:
fail-fast: false
matrix:
target:
- linux-arm64-unit-test-1-cpu
- linux-arm64-unit-test-2-cpu
- linux-arm64-unit-test-4-cpu
- linux-arm64-unit-test-4-cpu-race
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.21.5"
go-version: "1.21.6"
- env:
TARGET: ${{ matrix.target }}
run: |
case "${TARGET}" in
linux-arm64-unit-test-1-cpu)
GOARCH=arm64 PASSES='unit' RACE='false' CPU='1' ./scripts/test.sh -p=4
;;
linux-arm64-unit-test-2-cpu)
GOARCH=arm64 PASSES='unit' RACE='false' CPU='2' ./scripts/test.sh -p=2
;;
linux-arm64-unit-test-4-cpu)
GOARCH=arm64 PASSES='unit' RACE='false' CPU='4' ./scripts/test.sh -p=2
;;
linux-arm64-unit-test-4-cpu-race)
GOARCH=arm64 PASSES='unit' RACE='true' CPU='4' ./scripts/test.sh -p=2
;;
Expand Down

0 comments on commit d3de5e2

Please sign in to comment.