Skip to content

Commit

Permalink
ci: skip race on arm
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed Jan 22, 2025
1 parent dd20918 commit d354654
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,11 @@ jobs:
- uses: actions/checkout@v4

- name: Test dockerfile
run: make docker_test_all
run: |
if [[ "${{ matrix.os }}" == *"arm"* ]]; then
export SKIP_RACE=true
fi
make docker_test_all
env:
GO_VERSION: ${{ matrix.go-version }}
IMAGE_VARIANT: ${{ matrix.variant }}
Expand Down

0 comments on commit d354654

Please sign in to comment.