Skip to content

Commit

Permalink
ci(docker.yml): Omit impossible macos tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 authored Jan 2, 2025
1 parent 8015357 commit ab68fa3
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,13 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest] # XXX: `windows-latest` is not possible at the moment!
os:
- ubuntu-latest
# XXX: `macos-latest` on arm64 is not possible as well!?
# See https://stackoverflow.com/questions/77675906/github-actions-build-docker-image-on-arm64-macos-latest-xlarge
#- macos-latest
# XXX: `windows-latest` is not possible at the moment!
#- windows-latest

steps:
- uses: actions/checkout@v4
Expand All @@ -41,7 +47,6 @@ jobs:
if: runner.os == 'macOS'
run: |
brew install docker
colima start
- name: Install Docker (Windows)
if: runner.os == 'Windows'
Expand Down

0 comments on commit ab68fa3

Please sign in to comment.