File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 23
23
drafts : " OFF"
24
24
libzmq : " 4.2.0"
25
25
libzmqbuild : " pkgconfig"
26
+ # gcc 4.8
27
+ - os : " ubuntu-18.04"
28
+ cppstd : " 11"
29
+ cc : " gcc-4.8"
30
+ cxx : " g++-4.8"
31
+ drafts : " ON"
32
+ libzmq : " 4.3.4"
33
+ libzmqbuild : " cmake"
34
+ aptinstall : " gcc-4.8 g++-4.8"
35
+ # gcc 5
36
+ - os : " ubuntu-18.04"
37
+ cppstd : " 11"
38
+ cc : " gcc-5"
39
+ cxx : " g++-5"
40
+ drafts : " ON"
41
+ libzmq : " 4.3.4"
42
+ libzmqbuild : " cmake"
43
+ aptinstall : " gcc-5 g++-5"
26
44
# without draft
27
45
- os : " ubuntu-latest"
28
46
cppstd : " 20"
51
69
52
70
steps :
53
71
- uses : actions/checkout@v2
72
+
73
+ - name : install_deps
74
+ if : matrix.aptinstall
75
+ run : sudo apt install ${{matrix.aptinstall}}
76
+
54
77
- name : get_libzmq
55
78
run : |
56
79
curl -L https://github.com/zeromq/libzmq/archive/v${{ matrix.libzmq }}.tar.gz \
You can’t perform that action at this time.
0 commit comments