Skip to content

Commit

Permalink
ci: switch mpi examples to standard runner
Browse files Browse the repository at this point in the history
  • Loading branch information
mloubout committed Aug 7, 2023
1 parent 13700f9 commit 9219602
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/examples-mpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ on:
jobs:
build:
name: Examples with mpi
runs-on: ["self-hosted", "mpi", "examples"]
runs-on: ubuntu-latest
strategy:
matrix:
mpi: [ 'mpich', 'openmpi']

env:
DEVITO_MPI: "1"
Expand All @@ -44,6 +47,11 @@ jobs:
echo "PATH=$PATH" >> $GITHUB_ENV
echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH" >> $GITHUB_ENV
- name: Setup MPI
uses: mpi4py/setup-mpi@v1
with:
mpi: ${{ matrix.mpi }}

- name: Install dependencies
run: |
pip install --upgrade pip
Expand Down

0 comments on commit 9219602

Please sign in to comment.