diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 037a6e96..e4677b9e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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 \ No newline at end of file