Skip to content

Commit 80f321f

Browse files
authored
chore(ci): add artifact rules for test results in E2E build configurations (#5328)
1 parent 9faf602 commit 80f321f

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.teamcity/tests/buildTypes/E2EProductionTest.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ import jetbrains.buildServer.configs.kotlin.triggers.schedule
1111
object E2EProductionTest : BuildType({
1212
name = "E2E Test in Production"
1313

14+
artifactRules = """
15+
+:test-results/* => test-results.zip
16+
""".trimIndent()
17+
1418
vcs {
1519
root(vcsRoots.KotlinLangOrg)
1620
}

.teamcity/tests/buildTypes/E2ETests.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ import references.builds.kotlinx.serialization.KotlinxSerializationBuildApiRefer
1212
object E2ETests : BuildType({
1313
name = "E2E tests"
1414

15+
artifactRules = """
16+
+:test-results/* => test-results.zip
17+
""".trimIndent()
18+
1519
vcs {
1620
root(vcsRoots.KotlinLangOrg)
1721
}

0 commit comments

Comments
 (0)