-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #241 from pyiron/test_macos11
Test on older version of OSX
- Loading branch information
Showing
3 changed files
with
37 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# We are waiting on the macos-latest image to play nicely with MPI | ||
|
||
name: Is-macos-latest-working-yet | ||
|
||
on: | ||
schedule: | ||
- cron: '0 23 * * 2' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
openmpi-on-macos-latest: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: conda-incubator/[email protected] | ||
with: | ||
python-version: "3.11" | ||
mamba-version: "*" | ||
channels: conda-forge | ||
miniforge-variant: Mambaforge | ||
channel-priority: strict | ||
auto-update-conda: true | ||
environment-file: .ci_support/environment-openmpi.yml | ||
- name: Test | ||
shell: bash -l {0} | ||
timeout-minutes: 10 | ||
run: | | ||
pip install versioneer[toml]==0.29 | ||
pip install . --no-deps --no-build-isolation | ||
cd tests | ||
python -m unittest discover . | ||
env: | ||
OMPI_MCA_plm: 'isolated' | ||
OMPI_MCA_rmaps_base_oversubscribe: 'yes' | ||
OMPI_MCA_btl_vader_single_copy_mechanism: 'none' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters