Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
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
Operations
Operations
Metrics
Environments
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 Framework
Commits
7d2cbd0e
Unverified
Commit
7d2cbd0e
authored
Jun 15, 2023
by
Dominik Charousset
Committed by
GitHub
Jun 15, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1441
Add new linux distros to the CI
parents
8a3eedda
7f8bf0fe
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
1 deletion
+41
-1
.ci/almalinux-9/Dockerfile
.ci/almalinux-9/Dockerfile
+12
-0
.ci/alpinelinux-3.18/Dockerfile
.ci/alpinelinux-3.18/Dockerfile
+18
-0
Jenkinsfile
Jenkinsfile
+10
-0
libcaf_core/caf/config.hpp
libcaf_core/caf/config.hpp
+1
-1
No files found.
.ci/almalinux-9/Dockerfile
0 → 100644
View file @
7d2cbd0e
FROM
almalinux:9
RUN
dnf update
-y
\
&&
dnf
install
-y
\
cmake
\
gcc-c++
\
git
\
libasan
\
libubsan
\
make
\
openssl-devel
\
&&
dnf clean all
.ci/alpinelinux-3.18/Dockerfile
0 → 100644
View file @
7d2cbd0e
FROM
alpine:3.18
RUN
apk add
--no-cache
\
cmake
\
g++
\
gcc
\
git
\
linux-headers
\
make
\
musl-dev
\
openssl-dev
\
python3
\
py3-pip
RUN
python3
-m
pip
install
\
robotframework
\
robotframework-requests
\
robotframework-websocketclient
Jenkinsfile
View file @
7d2cbd0e
...
...
@@ -27,6 +27,16 @@ config = [
tags:
[
'docker'
],
builds:
[
'release'
],
]],
[
'almalinux-9'
,
[
// EOL: May 2032
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'release'
],
]],
[
'alpinelinux-3.18'
,
[
// EOL: May 2025
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'release'
],
]],
[
'centos-7'
,
[
// EOL July 2024
numCores:
4
,
tags:
[
'docker'
],
...
...
libcaf_core/caf/config.hpp
View file @
7d2cbd0e
...
...
@@ -222,7 +222,7 @@ struct IUnknown;
// Optionally enable CAF_ASSERT
#ifndef CAF_ENABLE_RUNTIME_CHECKS
# define CAF_ASSERT(unused) static_cast<void>(0)
#elif defined(CAF_WINDOWS) || defined(CAF_BSD)
#elif defined(CAF_WINDOWS) || defined(CAF_BSD)
|| !__has_include(<execinfo.h>)
# define CAF_ASSERT(stmt) \
if (static_cast<bool>(stmt) == false) { \
printf("%s:%u: requirement failed '%s'\n", __FILE__, __LINE__, #stmt); \
...
...
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