Skip to content

Commit 316c7b7

Browse files
authored
Update build_linux.yml
1 parent 5ed13c4 commit 316c7b7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build_linux.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10+
sharedlibs: [ON, OFF]
1011
toolchain:
1112
- {compiler: gcc, version: 10}
1213
- {compiler: gcc, version: 11}
@@ -31,6 +32,6 @@ jobs:
3132
cd fortran-strings
3233
mkdir build
3334
cd build
34-
cmake ..
35-
make
35+
cmake -DBUILD_SHARED_LIBS=${{ matrix.sharedlibs }} ..
36+
make VERBOSE=1
3637
make test

0 commit comments

Comments
 (0)