Skip to content

Commit

Permalink
Add extra checks to CI for runner diagnostic information
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-petersen committed Oct 14, 2024
1 parent 0fda70e commit 42be626
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
exp:
strategy:
matrix:
os: [ubuntu-latest]
cc: [gcc]
os: [ubuntu-latest, ubuntu-22.04]
cc: [gcc, mpicc]

name: "Test pyEXP Build"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install core dependencies - ubuntu
if: runner.os == 'Linux'
Expand All @@ -28,6 +28,7 @@ jobs:
sudo apt-get install -y build-essential libeigen3-dev libfftw3-dev libhdf5-dev libopenmpi-dev
sudo pip install numpy
- name: Setup submodule and build
run: |
git submodule update --init --recursive
Expand Down

0 comments on commit 42be626

Please sign in to comment.