22 lines
330 B
Kotlin
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()
|
|
}
|
|
}
|
|
}) |