Skip to content

Commit f6d2a08

Browse files
committed
Another attempt to fix the "install dependencies" step.
1 parent cb99fbd commit f6d2a08

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616
- name: Install dependencies
17-
run: sudo apt-get install -y --no-install-recommends gfortran libhdf5-openmpi-dev libopenmpi-dev libblas-dev liblapack-dev
17+
run:
18+
sudo apt-get update
19+
sudo apt-get install -y --fix-missing --no-install-recommends gfortran libhdf5-openmpi-dev libopenmpi-dev libblas-dev liblapack-dev
1820
- name: Install ED2
1921
run: |
2022
cd ED/build
@@ -45,7 +47,7 @@ jobs:
4547
- name: Install dependencies
4648
run:
4749
sudo apt-get update
48-
sudo apt-get install -y --no-install-recommends gfortran libhdf5-openmpi-dev libopenmpi-dev libblas-dev liblapack-dev
50+
sudo apt-get install -y --fix-missing --no-install-recommends gfortran libhdf5-openmpi-dev libopenmpi-dev libblas-dev liblapack-dev
4951
- name: Run ED2
5052
working-directory: ./EDTS/
5153
run: |

0 commit comments

Comments
 (0)