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
4b8d5abf
Commit
4b8d5abf
authored
Sep 28, 2022
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Plain Diff
Merge topic/neverlord/ci-update
parents
956433d1
d745863d
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
26 additions
and
20 deletions
+26
-20
.ci/almalinux-8/Dockerfile
.ci/almalinux-8/Dockerfile
+1
-1
.ci/debian-11/Dockerfile
.ci/debian-11/Dockerfile
+2
-7
.ci/fedora-35/Dockerfile
.ci/fedora-35/Dockerfile
+1
-1
.ci/fedora-36/Dockerfile
.ci/fedora-36/Dockerfile
+1
-1
.ci/ubuntu-22.04/Dockerfile
.ci/ubuntu-22.04/Dockerfile
+11
-0
Jenkinsfile
Jenkinsfile
+10
-10
No files found.
.ci/
centos
-8/Dockerfile
→
.ci/
almalinux
-8/Dockerfile
View file @
4b8d5abf
FROM
centos
:8
FROM
almalinux
:8
RUN
dnf update
-y
\
&&
dnf
install
-y
\
...
...
.ci/
ubuntu-16.04
/Dockerfile
→
.ci/
debian-11
/Dockerfile
View file @
4b8d5abf
FROM
ubuntu:16.04
FROM
debian:11
RUN
apt update
-y
\
&&
apt upgrade
-y
\
&&
apt
install
-y
\
clang-8
\
g++
\
cmake
\
git
\
libc++-8-dev
\
libc++abi-8-dev
\
libssl-dev
\
make
\
&&
apt autoclean
ENV
CXX=/usr/bin/clang++-8
ENV
CXXFLAGS=-stdlib=libc++
.ci/fedora-3
3
/Dockerfile
→
.ci/fedora-3
5
/Dockerfile
View file @
4b8d5abf
FROM
fedora:3
3
FROM
fedora:3
5
RUN
dnf update
-y
\
&&
dnf clean all
\
...
...
.ci/fedora-3
4
/Dockerfile
→
.ci/fedora-3
6
/Dockerfile
View file @
4b8d5abf
FROM
fedora:3
4
FROM
fedora:3
6
RUN
dnf update
-y
\
&&
dnf clean all
\
...
...
.ci/
debian-9
/Dockerfile
→
.ci/
ubuntu-22.04
/Dockerfile
View file @
4b8d5abf
FROM
debian:9
FROM
ubuntu:22.04
RUN
apt update
-y
\
&&
apt upgrade
-y
\
&&
apt
install
-y
\
clang-7
\
cmake
\
g++
\
git
\
libc++-7-dev
\
libc++abi-7-dev
\
libprotobuf-dev
\
libssl-dev
\
make
\
&&
apt autoclean
ENV
CXX=/usr/bin/clang++-7
ENV
CXXFLAGS=-stdlib=libc++
Jenkinsfile
View file @
4b8d5abf
...
...
@@ -32,42 +32,42 @@ config = [
tags:
[
'docker'
],
builds:
[
'release'
],
]],
[
'
centos
-8'
,
[
[
'
almalinux
-8'
,
[
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'release'
],
]],
[
'debian-
9
'
,
[
[
'debian-
10
'
,
[
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'release'
],
]],
[
'debian-1
0
'
,
[
[
'debian-1
1
'
,
[
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'release'
],
]],
[
'ubuntu-1
6
.04'
,
[
[
'ubuntu-1
8
.04'
,
[
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'release'
],
]],
[
'ubuntu-
18
.04'
,
[
[
'ubuntu-
20
.04'
,
[
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'release'
],
]],
[
'ubuntu-2
0
.04'
,
[
[
'ubuntu-2
2
.04'
,
[
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'release'
],
]],
[
'fedora-3
3
'
,
[
[
'fedora-3
5
'
,
[
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'release'
],
]],
[
'fedora-3
4
'
,
[
[
'fedora-3
6
'
,
[
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'release'
],
...
...
@@ -83,7 +83,7 @@ config = [
],
]],
// One extra debug build for leak checking.
[
'fedora-3
4
'
,
[
[
'fedora-3
6
'
,
[
numCores:
4
,
tags:
[
'docker'
,
'LeakSanitizer'
],
builds:
[
'debug'
],
...
...
@@ -95,7 +95,7 @@ config = [
],
]],
// One extra debug build with static libs, UBSan and hardening flags.
[
'fedora-3
4
'
,
[
[
'fedora-3
6
'
,
[
numCores:
4
,
tags:
[
'docker'
,
'UBSanitizer'
],
builds:
[
'debug'
],
...
...
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