Skip to content

Commit

Permalink
fix mpi?
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed Apr 26, 2024
1 parent cc67592 commit ed9b78b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/miniconda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
- os: macos-latest
platform: x32
fail-fast: false
defaults:
run:
shell: bash -l {0}

steps:
- uses: actions/checkout@v4
Expand All @@ -36,13 +39,11 @@ jobs:
--channel conda-forge
- name: Install netcdf4-python
shell: bash -l {0}
run: |
export PATH="${CONDA_PREFIX}/bin:${CONDA_PREFIX}/Library/bin:$PATH" # so setup.py finds nc-config
python -m pip install -v -e . --no-deps --force-reinstall
- name: Tests
shell: bash -l {0}
run: |
cd test && python run_all.py
Expand All @@ -53,6 +54,10 @@ jobs:
python-version: [ "3.11" ]
os: [ubuntu-latest]
platform: [x64]
defaults:
run:
shell: bash -l {0}

steps:
- uses: actions/checkout@v4
with:
Expand All @@ -69,14 +74,12 @@ jobs:
--channel conda-forge
- name: Install netcdf4-python with mpi
shell: bash -l {0}
run: |
export PATH="${CONDA_PREFIX}/bin:${CONDA_PREFIX}/Library/bin:$PATH" # so setup.py finds nc-config
nc-config --all
python -m pip install -v -e . --no-build-isolation --no-deps --force-reinstall
- name: Tests
shell: bash -l {0}
run: |
cd test && python run_all.py
cd ../examples
Expand Down

0 comments on commit ed9b78b

Please sign in to comment.