Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
actor-incubator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
actor-incubator
Commits
abc76c8e
Commit
abc76c8e
authored
May 04, 2020
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop incompatible distros, fix noexcept build
parent
8fb24b92
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
6 additions
and
87 deletions
+6
-87
.ci/centos-6/Dockerfile
.ci/centos-6/Dockerfile
+0
-19
.ci/debian-10/Dockerfile
.ci/debian-10/Dockerfile
+0
-14
.ci/debian-9/Dockerfile
.ci/debian-9/Dockerfile
+0
-14
.ci/ubuntu-16.04/Dockerfile
.ci/ubuntu-16.04/Dockerfile
+0
-14
.ci/ubuntu-20.04/Dockerfile
.ci/ubuntu-20.04/Dockerfile
+3
-3
Jenkinsfile
Jenkinsfile
+1
-22
libcaf_net/caf/net/test/host_fixture.hpp
libcaf_net/caf/net/test/host_fixture.hpp
+2
-1
No files found.
.ci/centos-6/Dockerfile
deleted
100644 → 0
View file @
8fb24b92
FROM
centos:6
RUN
yum update
-y
\
&&
yum
install
-y
centos-release-scl
\
&&
yum
install
-y
epel-release
\
&&
yum update
-y
\
&&
yum clean all
RUN
yum
install
-y
\
cmake3
\
devtoolset-7
\
devtoolset-7-libasan-devel
\
devtoolset-7-libubsan-devel
\
git
\
make
\
openssl-devel
\
&&
yum clean all
ENV
CXX=/opt/rh/devtoolset-7/root/usr/bin/g++
.ci/debian-10/Dockerfile
deleted
100644 → 0
View file @
8fb24b92
FROM
debian:buster
RUN
apt update
-y
&&
\
apt upgrade
-y
RUN
apt
install
-y
\
cmake
\
g++-8
\
git
\
libssl-dev
\
make
\
&&
apt autoclean
ENV
CXX=/usr/bin/g++-8
.ci/debian-9/Dockerfile
deleted
100644 → 0
View file @
8fb24b92
FROM
debian:stretch
RUN
apt update
-y
&&
\
apt upgrade
-y
RUN
apt
install
-y
\
clang-7
\
cmake
\
git
\
libssl-dev
\
make
\
&&
apt autoclean
ENV
CXX=/usr/bin/clang++-7
.ci/ubuntu-16.04/Dockerfile
deleted
100644 → 0
View file @
8fb24b92
FROM
ubuntu:16.04
RUN
apt update
-y
&&
\
apt upgrade
-y
RUN
apt
install
-y
\
clang-8
\
cmake
\
git
\
libssl-dev
\
make
\
&&
apt autoclean
ENV
CXX=/usr/bin/clang++-8
.ci/ubuntu-
18
.04/Dockerfile
→
.ci/ubuntu-
20
.04/Dockerfile
View file @
abc76c8e
FROM
ubuntu:
18
.04
FROM
ubuntu:
20
.04
RUN
apt update
-y
&&
\
RUN
apt update
-y
&&
\
apt upgrade
-y
apt upgrade
-y
RUN
apt
install
-y
\
RUN
apt
install
-y
\
cmake
\
cmake
\
g++-
8
\
g++-
9
\
git
\
git
\
libssl-dev
\
libssl-dev
\
make
\
make
\
&&
apt-get autoclean
&&
apt-get autoclean
ENV
CXX=/usr/bin/g++-
8
ENV
CXX=/usr/bin/g++-
9
Jenkinsfile
View file @
abc76c8e
...
@@ -29,34 +29,13 @@ config = [
...
@@ -29,34 +29,13 @@ config = [
// Our build matrix. Keys are the operating system labels and values are build configurations.
// Our build matrix. Keys are the operating system labels and values are build configurations.
buildMatrix:
[
buildMatrix:
[
// Various Linux builds for debug and release.
// Various Linux builds for debug and release.
[
'centos-6'
,
[
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'debug'
,
'release'
],
extraDebugFlags:
[
'CAF_SANITIZERS:STRING=address,undefined'
],
]],
[
'centos-7'
,
[
[
'centos-7'
,
[
numCores:
4
,
numCores:
4
,
tags:
[
'docker'
],
tags:
[
'docker'
],
builds:
[
'debug'
,
'release'
],
builds:
[
'debug'
,
'release'
],
extraDebugFlags:
[
'CAF_SANITIZERS:STRING=address,undefined'
],
extraDebugFlags:
[
'CAF_SANITIZERS:STRING=address,undefined'
],
]],
]],
[
'debian-9'
,
[
[
'ubuntu-20.04'
,
[
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'debug'
,
'release'
],
]],
[
'debian-10'
,
[
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'debug'
,
'release'
],
]],
[
'ubuntu-16.04'
,
[
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'debug'
,
'release'
],
]],
[
'ubuntu-18.04'
,
[
numCores:
4
,
numCores:
4
,
tags:
[
'docker'
],
tags:
[
'docker'
],
builds:
[
'debug'
,
'release'
],
builds:
[
'debug'
,
'release'
],
...
...
libcaf_net/caf/net/test/host_fixture.hpp
View file @
abc76c8e
...
@@ -23,13 +23,14 @@
...
@@ -23,13 +23,14 @@
#include "caf/detail/net_export.hpp"
#include "caf/detail/net_export.hpp"
#include "caf/error.hpp"
#include "caf/error.hpp"
#include "caf/net/host.hpp"
#include "caf/net/host.hpp"
#include "caf/raise_error.hpp"
namespace
{
namespace
{
struct
CAF_NET_EXPORT
host_fixture
{
struct
CAF_NET_EXPORT
host_fixture
{
host_fixture
()
{
host_fixture
()
{
if
(
auto
err
=
caf
::
net
::
this_host
::
startup
())
if
(
auto
err
=
caf
::
net
::
this_host
::
startup
())
throw
std
::
logic_error
(
"this_host::startup failed"
);
CAF_RAISE_ERROR
(
std
::
logic_error
,
"this_host::startup failed"
);
}
}
~
host_fixture
()
{
~
host_fixture
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment