Skip to content

Instantly share code, notes, and snippets.

@tuanpembual
Created March 3, 2017 16:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tuanpembual/56ed9450fe55da5f180da5c525e37b20 to your computer and use it in GitHub Desktop.
Save tuanpembual/56ed9450fe55da5f180da5c525e37b20 to your computer and use it in GitHub Desktop.
Jenkins Job
String app = "JobGitHUb"
folder("${app}") {
description "Semua jobs dari github"
}
job("${app}/Package") {
description "Ini adalah\nDeskripsi"
logRotator {
daysToKeep(7)
numToKeep(10)
}
label('slave')
scm {
git {
remote {
url('https://github.com/tuanpembual/jenkins-jobs.git')
credentials('jenkins')
}
branch('master')
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment