Skip to content

Commit

Permalink
Also run project integration CI for pHDF5.
Browse files Browse the repository at this point in the history
  • Loading branch information
1uc committed May 26, 2023
1 parent 9c92e5a commit 60c3e3d
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,15 +194,32 @@ jobs:
# =====================================================
CMake_Project:
runs-on: ubuntu-20.04
strategy:
matrix:
parallelism: [ serial, parallel ]
steps:
- uses: actions/checkout@v3
with:
submodules: true

- name: "Install libraries"
- name: "Update Ubuntu"
run: |
sudo apt-get -qq update
sudo apt-get -qq install libboost-all-dev libhdf5-dev libsz2 ninja-build
- name: "Install common libraries"
run: |
sudo apt-get -qq install libboost-all-dev libsz2 ninja-build
- name: "Install serial HDF5"
if: ${{ matrix.parallelism == "serial" }}
run: |
sudo apt-get -qq install libhdf5-dev
- name: "Install parallel HDF5"
if: ${{matrix.parallelism == "parallel" }}
run: |
sudo apt-get -qq install libhdf5-openmpi-dev
- name: "CMake Project Integration"
run: bash tests/test_project_integration.sh
Expand Down

0 comments on commit 60c3e3d

Please sign in to comment.