Skip to content

Commit d26e1d7

Browse files
committed
Use sudo for dep installs
1 parent 5ff9342 commit d26e1d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/make.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ on:
1212
- 'LICENSE'
1313
- 'CMAKE**'
1414
- '**CMakeLists.txt'
15-
# Allows you to run this workflow manually from the Actions tab
16-
workflow_dispatch:
1715

1816
concurrency:
1917
group: ${{ github.workflow }}-${{ github.ref }}
@@ -37,7 +35,9 @@ jobs:
3735
uses: mpi4py/setup-mpi@v1
3836

3937
- name: Install OpenBLAS
40-
run: apt-get -y install libopenblas0
38+
run: |
39+
sudo apt-get update
40+
sudo apt-get -y install libopenblas0
4141
4242
- name: Build ScaLAPACK
4343
run: |

0 commit comments

Comments
 (0)