Skip to content

Commit ab68fa3

Browse files
authored
ci(docker.yml): Omit impossible macos tests
1 parent 8015357 commit ab68fa3

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/docker.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,13 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
os: [ubuntu-latest, macos-latest] # XXX: `windows-latest` is not possible at the moment!
31+
os:
32+
- ubuntu-latest
33+
# XXX: `macos-latest` on arm64 is not possible as well!?
34+
# See https://stackoverflow.com/questions/77675906/github-actions-build-docker-image-on-arm64-macos-latest-xlarge
35+
#- macos-latest
36+
# XXX: `windows-latest` is not possible at the moment!
37+
#- windows-latest
3238

3339
steps:
3440
- uses: actions/checkout@v4
@@ -41,7 +47,6 @@ jobs:
4147
if: runner.os == 'macOS'
4248
run: |
4349
brew install docker
44-
colima start
4550
4651
- name: Install Docker (Windows)
4752
if: runner.os == 'Windows'

0 commit comments

Comments
 (0)