mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-23 19:21:53 +03:00
85 lines
1.8 KiB
Groovy
85 lines
1.8 KiB
Groovy
// Install the following plugins in addition to recommended plugins when installing Jenkins
|
|
// - Job DSL
|
|
// - AnsiColor
|
|
|
|
def releaseVimRJob = freeStyleJob('vimr_release')
|
|
def nightlyVimRJob = freeStyleJob('vimr_nightly')
|
|
|
|
releaseVimRJob.with {
|
|
description 'Release a new version'
|
|
|
|
logRotator {
|
|
numToKeep(10)
|
|
}
|
|
|
|
parameters {
|
|
stringParam('marketing_version', null, 'Eg "0.34.0". If "is_snapshot" is unchecked, you have to enter this.')
|
|
booleanParam('is_snapshot', true)
|
|
stringParam('branch', 'master', 'Branch to build; defaults to master')
|
|
textParam('release_notes', null, 'Release notes')
|
|
booleanParam('create_gh_release', false, 'Publish this release to Github?')
|
|
booleanParam('upload', false, 'Upload VimR to Github?')
|
|
booleanParam('update_appcast', false)
|
|
}
|
|
|
|
scm {
|
|
git {
|
|
remote {
|
|
url('git@github.com:qvacua/vimr.git')
|
|
}
|
|
branch('*/${branch}')
|
|
}
|
|
}
|
|
|
|
wrappers {
|
|
colorizeOutput()
|
|
}
|
|
|
|
steps {
|
|
shell('./bin/build_jenkins.sh')
|
|
}
|
|
|
|
publishers {
|
|
archiveArtifacts {
|
|
pattern('Neovim/build/**, build/Build/Products/Release/**, release.spec.sh, release-notes.temp.md, appcast*, build_release.temp.sh')
|
|
onlyIfSuccessful()
|
|
}
|
|
}
|
|
}
|
|
|
|
nightlyVimRJob.with {
|
|
description 'Release nightly'
|
|
|
|
logRotator {
|
|
numToKeep(10)
|
|
}
|
|
|
|
parameters {
|
|
stringParam('branch', 'update-neovim', 'Branch to build; defaults to update-neovim')
|
|
}
|
|
|
|
scm {
|
|
git {
|
|
remote {
|
|
url('git@github.com:qvacua/vimr.git')
|
|
}
|
|
branch('*/${branch}')
|
|
}
|
|
}
|
|
|
|
wrappers {
|
|
colorizeOutput()
|
|
}
|
|
|
|
steps {
|
|
shell('./bin/build_nightly_jenkins.sh')
|
|
}
|
|
|
|
publishers {
|
|
archiveArtifacts {
|
|
pattern('Neovim/build/**, build/Build/Products/Release/**')
|
|
onlyIfSuccessful()
|
|
}
|
|
}
|
|
}
|