Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set the nightly clang build to run the libcxx mixin #264

Merged
merged 1 commit into from
Mar 22, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions create_jenkins_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,13 +185,14 @@ def create_job(os_name, job_name, template_file, additional_dict):
'mailer_recipients': DEFAULT_MAIL_RECIPIENTS,
})

# configure nightly job for compiling with clang on linux
# configure nightly job for compiling with clang+libcxx on linux
if os_name == 'linux':
create_job(os_name, 'nightly_' + os_name + '_clang', 'ci_job.xml.em', {
create_job(os_name, 'nightly_' + os_name + '_clang_libcxx', 'ci_job.xml.em', {
'cmake_build_type': 'Debug',
'compile_with_clang_default': 'true',
'time_trigger_spec': PERIODIC_JOB_SPEC,
'mailer_recipients': DEFAULT_MAIL_RECIPIENTS + ' [email protected]',
'build_args_default': data['build_args_default'] + ' --mixin clang-libcxx',
})

# configure nightly job for testing rmw/rcl based packages with thread sanitizer on linux
Expand Down