Add .teamcity/Project.kt
This commit is contained in:
Vendored
+22
@@ -0,0 +1,22 @@
|
|||||||
|
project {
|
||||||
|
buildType(Build)
|
||||||
|
}
|
||||||
|
|
||||||
|
object Build : BuildType({
|
||||||
|
name = "Build"
|
||||||
|
|
||||||
|
vcs {
|
||||||
|
root(DslContext.settingsRoot)
|
||||||
|
}
|
||||||
|
|
||||||
|
steps {
|
||||||
|
script {
|
||||||
|
scriptContent = """
|
||||||
|
whoami
|
||||||
|
pwd
|
||||||
|
env
|
||||||
|
ls -al
|
||||||
|
""".trimIndent()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user