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
a73ad586
Commit
a73ad586
authored
May 04, 2020
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Jenkins nodes
parent
b11f1ae2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
58 additions
and
14 deletions
+58
-14
Jenkinsfile
Jenkinsfile
+58
-14
No files found.
Jenkinsfile
View file @
a73ad586
...
@@ -24,41 +24,85 @@ config = [
...
@@ -24,41 +24,85 @@ config = [
'build'
,
'build'
,
'style'
,
'style'
,
'tests'
,
'tests'
,
'coverage'
,
// 'coverage', TODO: fix kcov setup
],
],
// 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
,
tags:
[
'docker'
],
builds:
[
'debug'
,
'release'
],
builds:
[
'debug'
,
'release'
],
tools:
[
'gcc-7
'
],
extraDebugFlags:
[
'CAF_SANITIZERS:STRING=address,undefined
'
],
]],
]],
// On Fedora 28, our debug build also produces the coverage report.
[
'debian-9'
,
[
[
'fedora-28'
,
[
numCores:
4
,
builds:
[
'debug'
],
tags:
[
'docker'
],
tools:
[
'gcc-8'
],
builds:
[
'debug'
,
'release'
],
extraSteps:
[
'coverageReport'
],
extraFlags:
[
'BUILD_SHARED_LIBS:BOOL=OFF'
],
]],
]],
[
'fedora-28'
,
[
[
'debian-10'
,
[
builds:
[
'release'
],
numCores:
4
,
tools:
[
'gcc-8'
],
tags:
[
'docker'
],
builds:
[
'debug'
,
'release'
],
]],
[
'ubuntu-16.04'
,
[
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'debug'
,
'release'
],
]],
[
'ubuntu-18.04'
,
[
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'debug'
,
'release'
],
]],
[
'fedora-30'
,
[
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'debug'
,
'release'
],
]],
[
'fedora-31'
,
[
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'debug'
,
'release'
],
]],
// One extra debug build with exceptions disabled.
[
'centos-7'
,
[
numCores:
4
,
tags:
[
'docker'
],
builds:
[
'debug'
],
extraDebugFlags:
[
'CAF_ENABLE_EXCEPTIONS:BOOL=OFF'
,
'CMAKE_CXX_FLAGS:STRING=-fno-exceptions'
,
],
]],
]],
// Other UNIX systems.
// Other UNIX systems.
[
'macOS'
,
[
[
'macOS'
,
[
numCores:
4
,
builds:
[
'debug'
,
'release'
],
builds:
[
'debug'
,
'release'
],
tools:
[
'clang'
],
extraFlags:
[
'OPENSSL_ROOT_DIR=/usr/local/opt/openssl'
,
'OPENSSL_INCLUDE_DIR=/usr/local/opt/openssl/include'
,
],
extraDebugFlags:
[
'CAF_SANITIZERS:STRING=address,undefined'
],
]],
]],
[
'FreeBSD'
,
[
[
'FreeBSD'
,
[
numCores:
4
,
builds:
[
'debug'
,
'release'
],
builds:
[
'debug'
,
'release'
],
tools:
[
'clang
'
],
extraDebugFlags:
[
'CAF_SANITIZERS:STRING=address,undefined
'
],
]],
]],
// Non-UNIX systems.
// Non-UNIX systems.
[
'Windows'
,
[
[
'Windows'
,
[
numCores:
4
,
// TODO: debug build currently broken
// TODO: debug build currently broken
//builds: ['debug', 'release'],
//builds: ['debug', 'release'],
builds:
[
'release'
],
builds:
[
'release'
],
tools:
[
'msvc
'
],
extraFlags:
[
'CAF_ENABLE_OPENSSL_MODULE:BOOL=OFF
'
],
]],
]],
],
],
// Platform-specific environment settings.
// Platform-specific environment settings.
...
...
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