Skip to content

Commit 1baaa71

Browse files
committed
fix: skip tests if running inside a macos-arm64 GA runner
1 parent 849e9fb commit 1baaa71

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,9 @@ jobs:
3737
github-token: ${{ secrets.GITHUB_TOKEN }}
3838
native-image-job-reports: 'true'
3939

40-
- name: Setup Docker on macOS
41-
if: runner.os == 'macOS'
42-
uses: douglascamata/setup-docker-macos-action@v1.0.1
43-
with:
44-
colima-network-address: true
4540

4641
- name: Tests
42+
if: ${{ !(runner.os == 'macOS' && runner.arch == 'ARM64') }}
4743
run: ./gradlew check
4844

4945
- name: Tests reports

0 commit comments

Comments
 (0)