We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8015357 commit ab68fa3Copy full SHA for ab68fa3
.github/workflows/docker.yml
@@ -28,7 +28,13 @@ jobs:
28
strategy:
29
fail-fast: false
30
matrix:
31
- os: [ubuntu-latest, macos-latest] # XXX: `windows-latest` is not possible at the moment!
+ 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
38
39
steps:
40
- uses: actions/checkout@v4
@@ -41,7 +47,6 @@ jobs:
41
47
if: runner.os == 'macOS'
42
48
run: |
43
49
brew install docker
44
- colima start
45
50
46
51
- name: Install Docker (Windows)
52
if: runner.os == 'Windows'
0 commit comments