Skip to content

Commit

Permalink
use apt-get in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
chowland committed Apr 3, 2024
1 parent f100c72 commit ab6cf17
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,18 @@ jobs:

# - name: Install GFortran # NB gfortran and build-essential already on VM
# run: |
# sudo apt install build-essential gfortran
# sudo apt-get install build-essential gfortran

- name: Install BLAS and LAPACK
run: sudo apt install libblas-dev liblapack-dev
run: |
sudo apt-get update
sudo apt-get install libblas-dev liblapack-dev
- name: Install Parallel HDF5
run: sudo apt install libhdf5-openmpi-dev
run: sudo apt-get install libhdf5-openmpi-dev

- name: Install FFTW library
run: sudo apt install libfftw3-dev
run: sudo apt-get install libfftw3-dev

- name: Build AFiD
run: make

0 comments on commit ab6cf17

Please sign in to comment.