1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-27 14:14:19 +03:00

Remove unused files

This commit is contained in:
Tae Won Ha 2022-01-11 13:42:09 +01:00
parent c93f03b937
commit cb7b86609b
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44
3 changed files with 0 additions and 64 deletions

View File

@ -1,7 +0,0 @@
* Install Jenkins (via brew)
* Install plugins
- Job DSL
- AnsiColor
* Set the `git` binary in *Manage Jenkins* -> *Global Tool Configuration*
* Set `PATH` for Jenkins (necessary for e.g. `git-lfs`) in *Manage Jenkins* -> *Configure System* -> *Global properties* -> *Environment variables"

View File

@ -1,57 +0,0 @@
// Install the following plugins in addition to recommended plugins when installing Jenkins
// - Job DSL
// - AnsiColor
//
// And set the "Markup Formatter" in "Manage Jenkins -> Configure Global Security" to "Safe HTML".
def buildSnapshotJob = freeStyleJob('vimr_build')
buildSnapshotJob.with {
description '''\
Builds a new snapshot of VimR and pushes the tag:<br>
<ul>
<li>
<a href="lastSuccessfulBuild/artifact/build/Build/Products/Release/">Last successful Release</a>
</li>
</ul>
'''
logRotator {
numToKeep(10)
}
parameters {
booleanParam('publish', true, 'Publish this release to Github?')
stringParam('branch', 'develop', 'Branch to build; defaults to develop')
stringParam('marketing_version', null, 'Eg "0.34.0". If "is_snapshot" is unchecked, you have to enter this.')
textParam('release_notes', null, 'Release notes')
booleanParam('is_snapshot', true)
booleanParam('update_appcast', true)
booleanParam('update_snapshot_appcast_for_release', true)
booleanParam('use_cache_carthage', false)
}
scm {
git {
remote {
url('git@github.com:qvacua/vimr.git')
}
branch('*/${BRANCH}')
}
}
wrappers {
colorizeOutput()
}
steps {
shell('./bin/build.sh')
}
publishers {
archiveArtifacts {
pattern('build/Build/Products/Release/**')
onlyIfSuccessful()
}
}
}