-
-
Notifications
You must be signed in to change notification settings - Fork 529
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
jenkins: add options #559
jenkins: add options #559
Conversation
lamping7
commented
Sep 24, 2018
- set timeout to 1 hour
- throw away old build logs, keep 10
- remove unnecessary pipeline agent, blocking the node
- formatting changes for readability
- set timeout to 1 hour - throw away old build logs, keep 10 - remove unnecessary pipeline agent, blocking the node - formatting changes for readability
@julianoes I threw this on top of #558 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, the CI failure seems to be coming from #558.
@@ -1,8 +1,13 @@ | |||
#!/usr/bin/env groovy |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah!
} | ||
|
||
} // parallel | ||
} // Build |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
|
||
options { | ||
buildDiscarder(logRotator(numToKeepStr: '10', artifactDaysToKeepStr: '30')) | ||
timeout(time: 60, unit: 'MINUTES') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense!