We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91714a0 commit a25740dCopy full SHA for a25740d
.github/workflows/make.yml
@@ -3,7 +3,7 @@ name: Makefile CI
3
on:
4
push:
5
paths-exclude:
6
- - '.github/**'
+ - '.github/cmake.yml'
7
- '.gitignore'
8
- 'README'
9
- '**README'
@@ -20,10 +20,6 @@ on:
20
- 'CMAKE**'
21
- '**CMakeLists.txt'
22
23
-env:
24
- CFLAGS: "-Wall -pedantic"
25
- FFLAGS: "-fimplicit-none -fcheck=all"
26
-
27
defaults:
28
run:
29
shell: bash
@@ -32,16 +28,21 @@ jobs:
32
33
build-all:
34
30
runs-on: ubuntu-latest
31
+
35
steps:
36
- name: Checkout ScaLAPACK
37
uses: actions/checkout@v2
38
- name: Install MPI
39
run: sudo apt install mpich
40
- name: Build ScaLAPACK
41
run: |
42
cp SLmake.inc.example SLmake.inc
43
make --silent -j4 lib
44
make --silent all
45
46
- name: Run examples
47
working-directory: ${{github.workspace}}/EXAMPLE
48
0 commit comments