Skip to content

Commit 3d13afa

Browse files
committed
Use older gcc with older libzmq
1 parent 784ce47 commit 3d13afa

File tree

1 file changed

+10
-13
lines changed

1 file changed

+10
-13
lines changed

.github/workflows/linux.yml

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,33 +8,30 @@ jobs:
88
strategy:
99
matrix:
1010
cppstd: ["98", "11", "20"]
11-
buildtype: ["cmake"]
11+
cxx: ["g++-10"]
1212
drafts: ["ON"]
1313
libzmq: ["4.3.4"]
14+
libzmqbuild: ["cmake"]
1415
include:
1516
- cppstd: 11
16-
buildtype: "pkgconfig"
17+
cxx: "g++-7"
1718
drafts: "OFF"
18-
libzmq: "4.3.4"
19+
libzmq: "4.2.0"
20+
libzmqbuild: "pkgconfig"
1921
- cppstd: 20
20-
buildtype: "cmake"
22+
cxx: "g++-10"
2123
drafts: "OFF"
2224
libzmq: "4.3.4"
25+
libzmqbuild: "cmake"
2326

2427
steps:
25-
- uses: actions/checkout@v1
26-
- name: install_deps
27-
run: |
28-
sudo apt update
29-
sudo apt install gcc-10 g++-10
30-
shell: bash
28+
- uses: actions/checkout@v2
3129
- name: build
3230
run: ./ci_build.sh
3331
env:
34-
CC: gcc-10
35-
CXX: g++-10
32+
CXX: ${{ matrix.cxx }}
3633
CMAKE_CPP_STD: -DCMAKE_CXX_STANDARD=${{ matrix.cppstd }}
37-
BUILD_TYPE: ${{ matrix.buildtype }}
3834
ENABLE_DRAFTS: ${{ matrix.drafts }}
3935
ZMQ_VERSION: ${{ matrix.libzmq }}
36+
BUILD_TYPE: ${{ matrix.libzmqbuild }}
4037
VERBOSE: 1

0 commit comments

Comments
 (0)