clean config

This commit is contained in:
Alexey Metlyakov
2021-03-14 19:45:01 +03:00
parent 82c46626f5
commit 83ae2a41c5
2 changed files with 0 additions and 158 deletions

View File

@@ -1,54 +0,0 @@
import jetbrains.buildServer.configs.kotlin.v2019_2.*
import jetbrains.buildServer.configs.kotlin.v2019_2.buildSteps.maven
import jetbrains.buildServer.configs.kotlin.v2019_2.triggers.vcs
/*
The settings script is an entry point for defining a TeamCity
project hierarchy. The script should contain a single call to the
project() function with a Project instance or an init function as
an argument.
VcsRoots, BuildTypes, Templates, and subprojects can be
registered inside the project using the vcsRoot(), buildType(),
template(), and subProject() methods respectively.
To debug settings scripts in command-line, run the
mvnDebug org.jetbrains.teamcity:teamcity-configs-maven-plugin:generate
command and attach your debugger to the port 8000.
To debug in IntelliJ Idea, open the 'Maven Projects' tool window (View
-> Tool Windows -> Maven Projects), find the generate task node
(Plugins -> teamcity-configs -> teamcity-configs:generate), the
'Debug' option is available in the context menu for the task.
*/
version = "2020.2"
project {
buildType(Build)
}
object Build : BuildType({
name = "Build"
artifactRules = "target/*.jar"
vcs {
root(DslContext.settingsRoot)
}
steps {
maven {
goals = "clean test"
runnerArgs = "-Dmaven.test.failure.ignore=true"
}
}
triggers {
vcs {
}
}
})