runners of 'Build' build configuration were updated (TeamCity change in 'Amasson / Aura' project)

This commit is contained in:
amasson
2026-05-13 13:32:32 +00:00
committed by tcuser
parent 63a15d91a7
commit 03389605bf
+14
View File
@@ -1,4 +1,5 @@
import jetbrains.buildServer.configs.kotlin.* import jetbrains.buildServer.configs.kotlin.*
import jetbrains.buildServer.configs.kotlin.buildSteps.script
/* /*
The settings script is an entry point for defining a TeamCity The settings script is an entry point for defining a TeamCity
@@ -35,4 +36,17 @@ object Build : BuildType({
vcs { vcs {
root(DslContext.settingsRoot) root(DslContext.settingsRoot)
} }
steps {
script {
name = "PrintEnvironment"
id = "PrintEnvironment"
scriptContent = """
whoami
pwd
ls -al
env
""".trimIndent()
}
}
}) })