Skip to content

run standalone tests without custom MPI wrappers with MPICH as well #80

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 23 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ env:
MACOSX_DEPLOYMENT_TARGET: 14.0

jobs:
Run_standalone_tests_without_custom_MPI_wrappers:
name: "Run standalone tests without custom MPI Wrappers"
Run_standalone_tests_without_custom_MPI_wrappers_with_OpenMPI:
name: "Run standalone tests with Open MPI without custom MPI Wrappers"
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -33,6 +33,27 @@ jobs:
cd tests
./run_tests.sh --without-wrappers

Run_standalone_tests_without_custom_MPI_wrappers_with_MPICH:
name: "Run standalone tests with MPICH without custom MPI Wrappers"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["macos-latest", "ubuntu-20.04"]
steps:
- uses: actions/checkout@v4

- name: Setup Micromamba
uses: mamba-org/setup-micromamba@v2.0.2
with:
micromamba-version: '2.0.4-0'
environment-file: ci/environment_gfortran_mpich.yml

- name: Run standalone tests with MPICH and without MPI wrappers
shell: bash -e -x -l {0}
run: |
cd tests
./run_tests.sh --without-wrappers

Run_standalone_tests_with_GFortran_with_OpenMPI:
name: "Run standalone tests with GFortran with Open MPI"
runs-on: ${{ matrix.os }}
Expand Down