Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
cwpearson committed Dec 18, 2023
1 parent cbfa914 commit bb1eace
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ jobs:
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Install MPI
run: sudo apt-get update && sudo apt-get install -y libopenmpi-dev openmpi-bin cmake
run: |
sudo apt-get update && sudo apt-get install -y libopenmpi-dev openmpi-bin cmake
which mpirun
which mpicxx
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
Expand Down Expand Up @@ -47,7 +50,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install MPI
run: sudo apt-get update && sudo apt-get install -y mpich cmake
run: |
sudo apt-get update && sudo apt-get install -y mpich cmake
which mpirun
which mpicxx
- name: Check out repository code
uses: actions/checkout@v4
- name: Build Kokkos
Expand Down

0 comments on commit bb1eace

Please sign in to comment.