File tree Expand file tree Collapse file tree 2 files changed +40
-1
lines changed Expand file tree Collapse file tree 2 files changed +40
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Linux
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ gcc10 :
7
+ runs-on : ubuntu-latest
8
+ strategy :
9
+ matrix :
10
+ cppstd : [03, 11, 20]
11
+ buildtype : ["cmake"]
12
+ drafts : ["ON"]
13
+ libzmq : ["4.3.4"]
14
+ include :
15
+ - cppstd : 11
16
+ buildtype : " pkgconfig"
17
+ drafts : " ON"
18
+ libzmq : " 4.2.0"
19
+ - cppstd : 20
20
+ buildtype : " cmake"
21
+ drafts : " OFF"
22
+ libzmq : " 4.3.4"
23
+
24
+ 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
31
+ - name : build
32
+ run : ./ci_build.sh
33
+ env :
34
+ CC : gcc-10
35
+ CXX : g++-10
36
+ CMAKE_CPP_STD : DCMAKE_CXX_STANDARD=${{ matrix.cppstd }}
37
+ BUILD_TYPE : ${{ matrix.buildtype }}
38
+ ENABLE_DRAFTS : ${{ matrix.drafts }}
39
+ ZMQ_VERSION : ${{ matrix.libzmq }}
Original file line number Diff line number Diff line change 4
4
set -e
5
5
6
6
BUILD_TYPE=${BUILD_TYPE:- cmake}
7
- ZMQ_VERSION=${ZMQ_VERSION:- 4.3.1 }
7
+ ZMQ_VERSION=${ZMQ_VERSION:- 4.3.4 }
8
8
ENABLE_DRAFTS=${ENABLE_DRAFTS:- OFF}
9
9
COVERAGE=${COVERAGE:- OFF}
10
10
LIBZMQ=${PWD} /libzmq-build
You can’t perform that action at this time.
0 commit comments