From 5b355a8e95dd674fc170a9821b33c64fc08438eb Mon Sep 17 00:00:00 2001 From: Alex Plate Date: Wed, 23 Oct 2024 13:31:33 +0300 Subject: [PATCH] TC: Remove old tests configurations There was not a single case when these tests were needed --- .teamcity/_Self/Project.kt | 3 +-- .teamcity/_Self/subprojects/OldTests.kt | 25 ------------------------- 2 files changed, 1 insertion(+), 27 deletions(-) delete mode 100644 .teamcity/_Self/subprojects/OldTests.kt diff --git a/.teamcity/_Self/Project.kt b/.teamcity/_Self/Project.kt index 3e635fd13f..c435ba6f9d 100644 --- a/.teamcity/_Self/Project.kt +++ b/.teamcity/_Self/Project.kt @@ -8,7 +8,6 @@ import _Self.buildTypes.PropertyBased import _Self.buildTypes.Qodana import _Self.buildTypes.TestingBuildType import _Self.subprojects.GitHub -import _Self.subprojects.OldTests import _Self.subprojects.Releases import _Self.vcsRoots.GitHubPullRequest import _Self.vcsRoots.ReleasesVcsRoot @@ -18,7 +17,7 @@ import jetbrains.buildServer.configs.kotlin.v2019_2.Project object Project : Project({ description = "Vim engine for JetBrains IDEs" - subProjects(Releases, OldTests, GitHub) + subProjects(Releases, GitHub) // VCS roots vcsRoot(GitHubPullRequest) diff --git a/.teamcity/_Self/subprojects/OldTests.kt b/.teamcity/_Self/subprojects/OldTests.kt deleted file mode 100644 index ffc7a752de..0000000000 --- a/.teamcity/_Self/subprojects/OldTests.kt +++ /dev/null @@ -1,25 +0,0 @@ -package _Self.subprojects - -import _Self.buildTypes.TestingBuildType -import jetbrains.buildServer.configs.kotlin.v2019_2.Project - -object OldTests : Project({ - name = "Old IdeaVim tests" - description = "Tests for older versions of IJ" - - buildType(TestingBuildType("IC-2018.1", "181-182", javaVersion = "1.8", javaPlugin = false)) - buildType(TestingBuildType("IC-2018.2", "181-182", javaVersion = "1.8", javaPlugin = false)) - buildType(TestingBuildType("IC-2018.3", "183", javaVersion = "1.8", javaPlugin = false)) - buildType(TestingBuildType("IC-2019.1", "191-193", javaVersion = "1.8", javaPlugin = false)) - buildType(TestingBuildType("IC-2019.2", "191-193", javaVersion = "1.8", javaPlugin = false)) - buildType(TestingBuildType("IC-2019.3", "191-193", javaVersion = "1.8", javaPlugin = false)) - buildType(TestingBuildType("IC-2020.1", "201", javaVersion = "1.8", javaPlugin = false)) - buildType(TestingBuildType("IC-2020.2", "202", javaVersion = "1.8", javaPlugin = false)) - buildType(TestingBuildType("IC-2020.3", "203-212", javaVersion = "1.8", javaPlugin = false)) - buildType(TestingBuildType("IC-2021.1", "203-212", javaVersion = "1.8", javaPlugin = false)) - buildType(TestingBuildType("IC-2021.2.2", "203-212", javaVersion = "1.8", javaPlugin = false)) - buildType(TestingBuildType("IC-2021.3.2", "213-221", javaVersion = "1.8", javaPlugin = false)) - buildType(TestingBuildType("IC-2022.2.3", branch = "222", javaPlugin = false)) - buildType(TestingBuildType("IC-2023.1", "231-232", javaPlugin = false)) - buildType(TestingBuildType("IC-2023.2", "231-232", javaPlugin = false)) -})