Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt Include
TCD65:Rake
TCD65:Rake
nopaneltrue

Anchor
coverage
coverage

Build properties

Teamcity build properties are available in build script via "teamcity" property of the project. This property contains map with all teamcity-related properties. Following example contains task, that will print all available build properties to the build log (it must be executed by buildserver):

Code Block

  task printProperties << {
    teamcity.each { key, val ->
      println "##tc-property name='${key}' value='${val}'"
    }
  }

Code Coverage

To learn about configuring code coverage options with IDEA code coverage engine, please refer to the corresponding page.

...