Skip to content

Commit 366ff2a

Browse files
authored
add c++11 build to actions
1 parent b88b329 commit 366ff2a

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/rxcpp-ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,20 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
config:
19+
- {
20+
name: "Linux GCC 9 Debug (C++11)", artifact: "Linux.tar.xz",
21+
os: ubuntu-latest,
22+
build_type: Debug,
23+
cc: "gcc-9", cxx: "g++-9",
24+
cmake_args: "-D CMAKE_CXX_STANDARD:STRING=11"
25+
}
26+
- {
27+
name: "Linux GCC 9 Optimised (C++11)", artifact: "Linux.tar.xz",
28+
os: ubuntu-latest,
29+
build_type: RelWithDebInfo,
30+
cc: "gcc-9", cxx: "g++-9",
31+
cmake_args: "-D CMAKE_CXX_STANDARD:STRING=11"
32+
}
1933
- {
2034
name: "Linux GCC 9 Debug (C++14)", artifact: "Linux.tar.xz",
2135
os: ubuntu-latest,

0 commit comments

Comments
 (0)