Skip to content

Commit 52063e6

Browse files
committed
ci: don't use make -j, which is currently buggy
1 parent 1f70078 commit 52063e6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/make.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@ jobs:
3737
- name: Build ScaLAPACK
3838
run: |
3939
cp SLmake.inc.example SLmake.inc
40-
make --silent -j lib
41-
make --silent all
42-
40+
# make -j is buggy; see #54.
41+
make lib
42+
make all
43+
4344
- name: Run examples
4445
working-directory: ${{github.workspace}}/EXAMPLE
4546
run: |

0 commit comments

Comments
 (0)