Skip to content

Commit

Permalink
Merge pull request #47 from brown-ccv/feat-mac-build
Browse files Browse the repository at this point in the history
feat: build package in macOS
  • Loading branch information
kmilo9999 authored Dec 15, 2023
2 parents a497b80 + fd4925a commit 0308b41
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/python_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,15 @@ jobs:
fail-fast: false
matrix:
version: ['3.9', '3.10', '3.11']
runs-on: ubuntu-latest
os: [ubuntu-latest,macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: install mpi
run: sudo apt update && sudo apt-get install openmpi-bin openmpi-doc libopenmpi-dev
- name: install mpi in ubuntu
if: matrix.os == 'ubuntu-latest'
run: sudo apt update && sudo apt-get install openmpi-bin
- name: install mpi macos
if: matrix.os == 'macos-latest'
run: brew install open-mpi
- uses: actions/checkout@v3
- name: setup python
uses: actions/setup-python@v4
Expand Down

0 comments on commit 0308b41

Please sign in to comment.