Skip to content

Commit 50d2806

Browse files
Other docker installation
1 parent 0c14742 commit 50d2806

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ jobs:
7979
- uses: actions/checkout@v4
8080
- name: Setup Docker (missing on MacOS)
8181
if: runner.os == 'macos'
82-
run: ./hack/install-docker-macos.sh
82+
run: |
83+
brew install docker
84+
colima start
8385
- name: Install OpenMP (in MacOS)
8486
if: runner.os == 'macOS'
8587
run: brew install libomp
@@ -165,7 +167,7 @@ jobs:
165167
matrix:
166168
os:
167169
- ubuntu-22.04
168-
- macos-13
170+
- macos-12
169171
python-version:
170172
- "3.9"
171173
- "3.10"
@@ -185,7 +187,9 @@ jobs:
185187
- uses: actions/checkout@v4
186188
- name: Setup Docker (missing on MacOS)
187189
if: runner.os == 'macOS'
188-
run: ./hack/install-docker-macos.sh
190+
run: |
191+
brew install docker
192+
colima start
189193
- name: Install OpenMP (in MacOS)
190194
if: runner.os == 'macOS'
191195
run: brew install libomp

0 commit comments

Comments
 (0)