mirror of
https://github.com/simon987/beemer.git
synced 2025-04-10 13:56:42 +00:00
CI test 2
This commit is contained in:
parent
ec1dcc853b
commit
2a7bd1825a
28
ci/Build.kt
Normal file
28
ci/Build.kt
Normal file
@ -0,0 +1,28 @@
|
||||
package _Self.buildTypes
|
||||
|
||||
import jetbrains.buildServer.configs.kotlin.v2019_2.*
|
||||
import jetbrains.buildServer.configs.kotlin.v2019_2.buildSteps.exec
|
||||
import jetbrains.buildServer.configs.kotlin.v2019_2.triggers.vcs
|
||||
|
||||
object Build : BuildType({
|
||||
name = "Build"
|
||||
|
||||
artifactRules = "beemer => |%build.number%_beemer"
|
||||
publishArtifacts = PublishMode.SUCCESSFUL
|
||||
vcs {
|
||||
root(HttpsGithubComSimon987beemerRefsHeadsMaster)
|
||||
}
|
||||
steps {
|
||||
exec {
|
||||
name = "Build"
|
||||
path = "ci/build.sh"
|
||||
dockerImage = "golang"
|
||||
}
|
||||
}
|
||||
|
||||
triggers {
|
||||
vcs {
|
||||
branchFilter = ""
|
||||
}
|
||||
}
|
||||
})
|
Loading…
x
Reference in New Issue
Block a user