-
Notifications
You must be signed in to change notification settings - Fork 769
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TeamCity change in 'Ideavim' project: general settings of 'Tests for …
…IntelliJ 2024.2' build configuration were updated
- Loading branch information
1 parent
5024fd9
commit dfe645c
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package patches.buildTypes | ||
|
||
import jetbrains.buildServer.configs.kotlin.v2019_2.* | ||
import jetbrains.buildServer.configs.kotlin.v2019_2.ui.* | ||
|
||
/* | ||
This patch script was generated by TeamCity on settings change in UI. | ||
To apply the patch, change the buildType with id = 'IdeaVimTests_2024_2' | ||
accordingly, and delete the patch script. | ||
*/ | ||
changeBuildType(RelativeId("IdeaVimTests_2024_2")) { | ||
check(artifactRules == """ | ||
+:build/reports => build/reports | ||
+:/mnt/agent/temp/buildTmp/ => /mnt/agent/temp/buildTmp/ | ||
""".trimIndent()) { | ||
"Unexpected option value: artifactRules = $artifactRules" | ||
} | ||
artifactRules = """ | ||
+:build/reports => build/reports | ||
+:tests/java-tests/build/reports => java-tests/build/reports | ||
+:/mnt/agent/temp/buildTmp/ => /mnt/agent/temp/buildTmp/ | ||
""".trimIndent() | ||
} |