Skip to content

Commit

Permalink
Add GitHub workflow covering libxc 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vanderhe committed Dec 6, 2024
1 parent 85b218c commit 788de3d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ jobs:
matrix:
os: [ubuntu-latest]
mpi: [nompi, mpich]
libxc: [6, 7]
config: [Debug]
exclude:
- mpi: mpich
libxc: 6

steps:
- name: Checkout code
Expand Down Expand Up @@ -61,9 +65,14 @@ jobs:
- name: Install BLAS
run: mamba install openblas libopenblas

- name: Install libxc
- name: Install libxc (6.2.2)
if: contains(matrix.libxc, '6')
run: mamba install libxc=6.2.2

- name: Install libxc (7.0.0)
if: contains(matrix.libxc, '7')
run: mamba install libxc=7.0.0

- name: Set libxc search path
run: echo "CMAKE_PREFIX_PATH=${CONDA_PREFIX}/" >> $GITHUB_ENV

Expand Down

0 comments on commit 788de3d

Please sign in to comment.