Jenkins: Difference between revisions
(→Tips) |
|||
Line 1: | Line 1: | ||
== Links == |
|||
* [https://learnxinyminutes.com/docs/groovy/ Learn X in Y minutes - Groovy] |
|||
== Tips == |
== Tips == |
||
=== Cancel older builds if new one starting === |
=== Cancel older builds if new one starting === |
Revision as of 13:22, 4 February 2021
Links
Tips
Cancel older builds if new one starting
Using milestone
, we can cancel older builds if a new commit is pushed.
Here an example where all new build cancels the older ones, except on the master branch. This is useful to increase throughput of Jenkins slaves. This policy makes sense since non-master branches typically do not require thorough testing/analysis.
stage('UTs')
{
// if not on master and older builds are ongoing, cancel them !
if ( env.BRANCH_NAME != 'master' )
{
def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > 1) milestone(buildNumber - 1)
milestone(buildNumber)
}
// ...
}
Use 'Pipeline Syntax' to write Groovy script
Jenkins offers a button Pipeline Syntax
to generate Groovy scripts.
Very useful for adding new commands.
Custom git scm checkout with another submodule
The first line was created with the pipeline syntax tool in Jenkins. Then we simply checkout the branch we want in the submodule.
def checkoutUsk() { checkout([$class: 'GitSCM', branches: name: '*/master', doGenerateSubmoduleConfigurations: false, extensions: $class: 'SubmoduleOption', disableSubmodules: false, parentCredentials: false, recursiveSubmodules: true, reference: '', trackingSubmodules: false, submoduleCfg: [], userRemoteConfigs: url: 'ssh://user@server.com/project.git']) sh 'cd my_submodule && git checkout origin/master && cd ..' }
Checkout git with submodule, not recursive
Say we have a repo with submodules, also with submodules, but only want to checkout first level.
- Add parent repo
- Select Advanced sub-modules behaviours, but don't click recursively update submodules.
Increase perf on Windows
- Disable anti-virus, or move master/slave workspace in not-scanned directory
- Careful slave: on Windows, the slave uses the launch directory as base directory. Move that, or define
user.dir
in the slave environment variables (within Jenkins).
- Careful slave: on Windows, the slave uses the launch directory as base directory. Move that, or define
- Disable Windows search
Increase job number
First get a listing all available job in the script console:
Jenkins.instance.getAllItems(AbstractItem.class).each { println it.fullName + " - " + it.class };
Then set the RC for the selected job with:
Jenkins.instance.getItemByFullName("your/job/name").updateNextBuildNumber(128)