Skip to content

Commit a25740d

Browse files
Removes unused flags
1 parent 91714a0 commit a25740d

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/make.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Makefile CI
33
on:
44
push:
55
paths-exclude:
6-
- '.github/**'
6+
- '.github/cmake.yml'
77
- '.gitignore'
88
- 'README'
99
- '**README'
@@ -20,10 +20,6 @@ on:
2020
- 'CMAKE**'
2121
- '**CMakeLists.txt'
2222

23-
env:
24-
CFLAGS: "-Wall -pedantic"
25-
FFLAGS: "-fimplicit-none -fcheck=all"
26-
2723
defaults:
2824
run:
2925
shell: bash
@@ -32,16 +28,21 @@ jobs:
3228

3329
build-all:
3430
runs-on: ubuntu-latest
31+
3532
steps:
33+
3634
- name: Checkout ScaLAPACK
3735
uses: actions/checkout@v2
36+
3837
- name: Install MPI
3938
run: sudo apt install mpich
39+
4040
- name: Build ScaLAPACK
4141
run: |
4242
cp SLmake.inc.example SLmake.inc
4343
make --silent -j4 lib
4444
make --silent all
45+
4546
- name: Run examples
4647
working-directory: ${{github.workspace}}/EXAMPLE
4748
run: |

0 commit comments

Comments
 (0)