Skip to content

Commit

Permalink
Other docker installation
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertSamoilescu committed Jun 18, 2024
1 parent 0c14742 commit 50d2806
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ jobs:
- uses: actions/checkout@v4
- name: Setup Docker (missing on MacOS)
if: runner.os == 'macos'
run: ./hack/install-docker-macos.sh
run: |
brew install docker
colima start
- name: Install OpenMP (in MacOS)
if: runner.os == 'macOS'
run: brew install libomp
Expand Down Expand Up @@ -165,7 +167,7 @@ jobs:
matrix:
os:
- ubuntu-22.04
- macos-13
- macos-12
python-version:
- "3.9"
- "3.10"
Expand All @@ -185,7 +187,9 @@ jobs:
- uses: actions/checkout@v4
- name: Setup Docker (missing on MacOS)
if: runner.os == 'macOS'
run: ./hack/install-docker-macos.sh
run: |
brew install docker
colima start
- name: Install OpenMP (in MacOS)
if: runner.os == 'macOS'
run: brew install libomp
Expand Down

0 comments on commit 50d2806

Please sign in to comment.