Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
JenkinsConfiguration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ChimeraTK Mirror
JenkinsConfiguration
Commits
badf0a93
Commit
badf0a93
authored
4 years ago
by
Jens Georg
Browse files
Options
Downloads
Patches
Plain Diff
Switch *san to clang-8 for proper backtraces
parent
9baa9a01
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dockerfiles/xenial.docker
+1
-1
1 addition, 1 deletion
dockerfiles/xenial.docker
vars/helper.groovy
+4
-4
4 additions, 4 deletions
vars/helper.groovy
with
5 additions
and
5 deletions
dockerfiles/xenial.docker
+
1
−
1
View file @
badf0a93
...
...
@@ -23,7 +23,7 @@ RUN apt-get update && \
apt-get
install
-y
libncurses5-dev
&&
\
apt-get
install
-y
linux-headers-generic
&&
\
apt-get
install
-y
graphviz
&&
\
apt-get
install
-y
clang-
6.0
&&
\
apt-get
install
-y
clang-
8
&&
\
apt-get
install
-y
libhdf5-dev
&&
\
apt-get
install
-y
liblua5.2-dev
&&
\
apt-get
install
-y
python-sphinx
&&
\
...
...
This diff is collapsed.
Click to expand it.
vars/helper.groovy
+
4
−
4
View file @
badf0a93
...
...
@@ -242,12 +242,12 @@ for VAR in \${JOB_VARIABLES}; do
export \\`eval echo \\\${VAR}\\`
done
if [ "${buildType}" == "tsan" ]; then
export CC="clang-
6.0
"
export CXX="clang++-
6.0
"
export CC="clang-
8
"
export CXX="clang++-
8
"
cmake /scratch/source/\${RUN_FROM_SUBDIR} -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=\${cmakeBuildType} -DSUPPRESS_AUTO_DOC_BUILD=true \${CMAKE_EXTRA_ARGS} -DCMAKE_CXX_FLAGS="-fsanitize=thread"
elif [ "${buildType}" == "asan" ]; then
export CC="clang-
6.0
"
export CXX="clang++-
6.0
"
export CC="clang-
8
"
export CXX="clang++-
8
"
export LSAN_OPTIONS=verbosity=1:log_threads=1
cmake /scratch/source/\${RUN_FROM_SUBDIR} -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=\${cmakeBuildType} -DSUPPRESS_AUTO_DOC_BUILD=true \${CMAKE_EXTRA_ARGS} -DCMAKE_CXX_FLAGS="-fsanitize=address -fsanitize=undefined -fsanitize=leak"
else
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment