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

do not run linters on repeated nightly #9

Merged
merged 4 commits into from
Dec 5, 2016
Merged
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion create_jenkins_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def main(argv=None):
job_name = job_name[0:-5]
job_data['time_trigger_spec'] = '0 12 * * *'
job_data['cmake_build_type'] = 'None'
job_data['ament_test_args_default'] = '--retest-until-fail 20'
job_data['ament_test_args_default'] = '--retest-until-fail 20 -LE lint'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

my bad, works locally with lint for some reason. Updated in 78211f1

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How did you test this locally? Currently the patch passes -LE to ament but it needs to pass it to ctest.

job_config = expand_template('ci_job.xml.template', job_data)
configure_job(jenkins, job_name, job_config, **jenkins_kwargs)

Expand Down