Files
teamcity-pipelines/.teamcity/Project.kt
T
2026-05-13 12:18:12 +00:00

22 lines
330 B
Kotlin

project {
buildType(Build)
}
object Build : BuildType({
name = "Build"
vcs {
root(DslContext.settingsRoot)
}
steps {
script {
scriptContent = """
whoami
pwd
env
ls -al
""".trimIndent()
}
}
})