File tree Expand file tree Collapse file tree 3 files changed +25
-2
lines changed Expand file tree Collapse file tree 3 files changed +25
-2
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 \
Original file line number Diff line number Diff line change 2
2
3
3
#include " testutil.hpp"
4
4
5
- #if defined(ZMQ_CPP11) && defined(ZMQ_BUILD_DRAFT_API)
5
+ #if defined(ZMQ_CPP11) && !defined(ZMQ_CPP11_PARTIAL) && defined(ZMQ_BUILD_DRAFT_API)
6
6
7
7
#include < array>
8
8
#include < memory>
Original file line number Diff line number Diff line change 1
1
#include " testutil.hpp"
2
2
3
- #if defined(ZMQ_BUILD_DRAFT_API) && defined(ZMQ_CPP11) && defined(ZMQ_HAVE_POLLER)
3
+ #if defined(ZMQ_BUILD_DRAFT_API) && defined(ZMQ_CPP11) && !defined(ZMQ_CPP11_PARTIAL) && defined(ZMQ_HAVE_POLLER)
4
4
5
5
#include < array>
6
6
#include < memory>
You can’t perform that action at this time.
0 commit comments