Skip to content

Commit

Permalink
Use native arch. (#4029)
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitrisJim authored Jul 6, 2023
1 parent 1fda14d commit 5e431d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
find ./tests -type d | while IFS= read -r dir
do
if ls "${dir}"/*.go >/dev/null 2>&1; then
GOARCH=arm64 go test -c "$dir"
go test -c "$dir"
fi
done
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
find ./tests -type d | while IFS= read -r dir
do
if ls "${dir}"/*.go >/dev/null 2>&1; then
GOARCH=arm64 go test -c "$dir"
GOARCH=${{ matrix.go-arch }} go test -c "$dir"
fi
done
Expand Down

0 comments on commit 5e431d9

Please sign in to comment.