Skip to content

Commit 784ce47

Browse files
authored
Merge pull request #500 from gummif/gfa/actions2
Fix actions
2 parents 9521e03 + dec80e2 commit 784ce47

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/linux.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
cppstd: [03, 11, 20]
10+
cppstd: ["98", "11", "20"]
1111
buildtype: ["cmake"]
1212
drafts: ["ON"]
1313
libzmq: ["4.3.4"]
1414
include:
1515
- cppstd: 11
1616
buildtype: "pkgconfig"
17-
drafts: "ON"
18-
libzmq: "4.2.0"
17+
drafts: "OFF"
18+
libzmq: "4.3.4"
1919
- cppstd: 20
2020
buildtype: "cmake"
2121
drafts: "OFF"
@@ -33,7 +33,8 @@ jobs:
3333
env:
3434
CC: gcc-10
3535
CXX: g++-10
36-
CMAKE_CPP_STD: DCMAKE_CXX_STANDARD=${{ matrix.cppstd }}
36+
CMAKE_CPP_STD: -DCMAKE_CXX_STANDARD=${{ matrix.cppstd }}
3737
BUILD_TYPE: ${{ matrix.buildtype }}
3838
ENABLE_DRAFTS: ${{ matrix.drafts }}
3939
ZMQ_VERSION: ${{ matrix.libzmq }}
40+
VERBOSE: 1

0 commit comments

Comments
 (0)