File tree Expand file tree Collapse file tree 1 file changed +10
-13
lines changed Expand file tree Collapse file tree 1 file changed +10
-13
lines changed Original file line number Diff line number Diff line change 8
8
strategy :
9
9
matrix :
10
10
cppstd : ["98", "11", "20"]
11
- buildtype : ["cmake "]
11
+ cxx : ["g++-10 "]
12
12
drafts : ["ON"]
13
13
libzmq : ["4.3.4"]
14
+ libzmqbuild : ["cmake"]
14
15
include :
15
16
- cppstd : 11
16
- buildtype : " pkgconfig "
17
+ cxx : " g++-7 "
17
18
drafts : " OFF"
18
- libzmq : " 4.3.4"
19
+ libzmq : " 4.2.0"
20
+ libzmqbuild : " pkgconfig"
19
21
- cppstd : 20
20
- buildtype : " cmake "
22
+ cxx : " g++-10 "
21
23
drafts : " OFF"
22
24
libzmq : " 4.3.4"
25
+ libzmqbuild : " cmake"
23
26
24
27
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
31
29
- name : build
32
30
run : ./ci_build.sh
33
31
env :
34
- CC : gcc-10
35
- CXX : g++-10
32
+ CXX : ${{ matrix.cxx }}
36
33
CMAKE_CPP_STD : -DCMAKE_CXX_STANDARD=${{ matrix.cppstd }}
37
- BUILD_TYPE : ${{ matrix.buildtype }}
38
34
ENABLE_DRAFTS : ${{ matrix.drafts }}
39
35
ZMQ_VERSION : ${{ matrix.libzmq }}
36
+ BUILD_TYPE : ${{ matrix.libzmqbuild }}
40
37
VERBOSE : 1
You can’t perform that action at this time.
0 commit comments