diff --git a/.teamcity/Project.kt b/.teamcity/Project.kt new file mode 100644 index 0000000..af4c04a --- /dev/null +++ b/.teamcity/Project.kt @@ -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() + } + } +}) \ No newline at end of file