Barry Kaplan
- Total activity 29
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 10
-
Created kotlin dsl: Refactor-rename BuildTypes but retain build history
I found out the hard way after cleaning up all the inconsistent naming our our build types, that after renaming I lost all the build history. This is because the kotlin generator did not include th... -
Created kotlin dsl: project subpackage naming conventions
As part of the kotlin conversion, the projects each have subpackages `buildTypes` and `vcsRoots`. I was inclined to name the the vcs roots and builds the same using package scoping the project file... -
Created kotlin dsl: Initial conversion and root project naming
After converting from xml to kotlin, the root project package name is "_Self", and its Project object doesn't have a `name` or `id` like other projects. package _Selfobject Project : Project({ d... -
Created kotlin dsl: Why does package rename clear the Project id?
After export to kotlin I have a lot of package names that capitalized package Opsobject Project : Project ({ id("Ops") name = "ops" ... After doing a rename refactor on the package from "O... -
Created kotlin dsl: How to disable a step?
After converting to kotlin, disablabled steps looks like disableSettings("RUNNER_166", "RUNNER_167", "RUNNER_394") But how would I disable a custom step that is defined in the template like steps {... -
Created Write literal bash script in kotlin string?
How can I create a bash script as a multi-line string without kotlin/idea trying to interpret the contents? The below snippet has all kinds of errors in idea because kotlin is trying to find the ba... -
Created where are the meta-runners when exporting kotlin
I exported my teamcity project(s) in kotlin. I have steps that look like ``` name = "Set build version number"id = "RUNNER_297"type = "SetVersionNumberNodeLib"} ``` But I can no find trace of the R... -
Created teamcity overwrites runner type for meta-runners found on disk
I am installing meta-runners via ansible. Some of the runners are of type 'simpleRunner' and some 'gradle-runner'. When the meta-runner is first installed and viewed in teamcity UI it has the corre... -
Edited meta-runner gets wrong teamcity home directory
Our teamcity server and agents have different home directories. We are finding that meta-runners (for command-line bash at least) the HOME environment variable is set to the value of the server. Ev...