Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
liuq19 committed Feb 14, 2025
1 parent 23bcd00 commit 531431a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-arm64-1.24.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

- name: Unit Test
run: |
GOMAXPROCS=4 go test -ldflags=-checklinkname=0 -race -covermode=atomic -coverprofile=coverage.txt $(go list ./... | grep -v -E 'loader|jit|avx|x86|sse|examples')
GOMAXPROCS=4 go test -ldflags=-checklinkname=0 -race -covermode=atomic -coverprofile=coverage.txt $(go list $GITHUB_WORKSPACE/... | grep -v -E 'loader|jit|avx|x86|sse|examples')
- name: Data Race
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: Unit Test
run: |
GOMAXPROCS=4 go test -race -covermode=atomic -coverprofile=coverage.txt $(go list ./... | grep -v -E 'loader|jit|avx|x86|sse')
GOMAXPROCS=4 go test -race -covermode=atomic -coverprofile=coverage.txt $(go list $GITHUB_WORKSPACE/... | grep -v -E 'loader|jit|avx|x86|sse')
- name: Data Race
run: |
Expand Down

0 comments on commit 531431a

Please sign in to comment.