This is an automated email from the ASF dual-hosted git repository.

sanpwc pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new ef3945348e6 IGNITE-27111 Remove IGNITE_ZONE_BASED_REPLICATION param 
for TC runs (#7021)
ef3945348e6 is described below

commit ef3945348e6462a176139bb89460c9874477fe4f
Author: Lozmanov <[email protected]>
AuthorDate: Thu Nov 20 13:30:11 2025 +0500

    IGNITE-27111 Remove IGNITE_ZONE_BASED_REPLICATION param for TC runs (#7021)
---
 .teamcity/test/build_types/RunAllTests.kt          | 1 -
 .teamcity/test/build_types/RunAllTestsCustomJDK.kt | 1 -
 .teamcity/test/template_types/OtherTestsModule.kt  | 3 +--
 .teamcity/test/template_types/TestsModule.kt       | 3 +--
 4 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/.teamcity/test/build_types/RunAllTests.kt 
b/.teamcity/test/build_types/RunAllTests.kt
index a42e02a0b6a..43f3911be21 100644
--- a/.teamcity/test/build_types/RunAllTests.kt
+++ b/.teamcity/test/build_types/RunAllTests.kt
@@ -32,7 +32,6 @@ object RunAllTests : BuildType({
 
     params {
         checkbox("reverse.dep.*.IGNITE_COMPATIBILITY_TEST_ALL_VERSIONS", 
"-DtestAllVersions=false", label = "Test All Versions", description = "Test all 
versions in compatibility tests", checked = "-DtestAllVersions=true", unchecked 
= "-DtestAllVersions=false")
-        checkbox("reverse.dep.*.IGNITE_ZONE_BASED_REPLICATION", 
"-DIGNITE_ZONE_BASED_REPLICATION=true", label = "Enable Zone-based 
replication", checked = "-DIGNITE_ZONE_BASED_REPLICATION=true", unchecked = 
"-DIGNITE_ZONE_BASED_REPLICATION=false")
         select("reverse.dep.*.IGNITE_DEFAULT_STORAGE_ENGINE", "", label = 
"Default Storage Engine", options = listOf("Default" to "", "aimem" to 
"-DIGNITE_DEFAULT_STORAGE_ENGINE=aimem", "rocksdb" to 
"-DIGNITE_DEFAULT_STORAGE_ENGINE=rocksdb"))
     }
 
diff --git a/.teamcity/test/build_types/RunAllTestsCustomJDK.kt 
b/.teamcity/test/build_types/RunAllTestsCustomJDK.kt
index 8c0b9770ded..bd083d5fe3f 100644
--- a/.teamcity/test/build_types/RunAllTestsCustomJDK.kt
+++ b/.teamcity/test/build_types/RunAllTestsCustomJDK.kt
@@ -18,7 +18,6 @@ object RunAllTestsCustomJDK : BuildType({
 
     params {
         checkbox("reverse.dep.*.IGNITE_COMPATIBILITY_TEST_ALL_VERSIONS", 
"-DtestAllVersions=false", label = "Test All Versions", description = "Test all 
versions in compatibility tests", checked = "-DtestAllVersions=true", unchecked 
= "-DtestAllVersions=false")
-        checkbox("reverse.dep.*.IGNITE_ZONE_BASED_REPLICATION", 
"-DIGNITE_ZONE_BASED_REPLICATION=false", label = "Disable Zone-based 
replication", checked = "-DIGNITE_ZONE_BASED_REPLICATION=true", unchecked = 
"-DIGNITE_ZONE_BASED_REPLICATION=false")
         select("reverse.dep.*.IGNITE_DEFAULT_STORAGE_ENGINE", "", label = 
"Default Storage Engine", options = listOf("Default" to "", "aimem" to 
"-DIGNITE_DEFAULT_STORAGE_ENGINE=aimem", "rocksdb" to 
"-DIGNITE_DEFAULT_STORAGE_ENGINE=rocksdb"))
     }
 
diff --git a/.teamcity/test/template_types/OtherTestsModule.kt 
b/.teamcity/test/template_types/OtherTestsModule.kt
index 4fd7469abc7..4533655b4f3 100644
--- a/.teamcity/test/template_types/OtherTestsModule.kt
+++ b/.teamcity/test/template_types/OtherTestsModule.kt
@@ -26,9 +26,8 @@ class OtherTestsModule(
         hiddenText("JVM_ARGS", jvmArgs + configuration.jvmArg)
 
         hiddenText("IGNITE_COMPATIBILITY_TEST_ALL_VERSIONS", 
"-DtestAllVersions=false")
-        hiddenText("IGNITE_ZONE_BASED_REPLICATION", 
"-DIGNITE_ZONE_BASED_REPLICATION=true")
         hiddenText("IGNITE_DEFAULT_STORAGE_ENGINE", "")
-        hiddenText("env.GRADLE_OPTS", 
"-PextraJvmArgs=\"%IGNITE_COMPATIBILITY_TEST_ALL_VERSIONS% 
%IGNITE_ZONE_BASED_REPLICATION% %IGNITE_DEFAULT_STORAGE_ENGINE%\"")
+        hiddenText("env.GRADLE_OPTS", 
"-PextraJvmArgs=\"%IGNITE_COMPATIBILITY_TEST_ALL_VERSIONS% 
%IGNITE_DEFAULT_STORAGE_ENGINE%\"")
     }
 
     steps {
diff --git a/.teamcity/test/template_types/TestsModule.kt 
b/.teamcity/test/template_types/TestsModule.kt
index 97cd94533f3..3489a22f43e 100644
--- a/.teamcity/test/template_types/TestsModule.kt
+++ b/.teamcity/test/template_types/TestsModule.kt
@@ -24,9 +24,8 @@ class TestsModule(
         hiddenText("JVM_ARGS", module.jvmArgs + configuration.jvmArg)
 
         hiddenText("IGNITE_COMPATIBILITY_TEST_ALL_VERSIONS", 
"-DtestAllVersions=false")
-        hiddenText("IGNITE_ZONE_BASED_REPLICATION", 
"-DIGNITE_ZONE_BASED_REPLICATION=true")
         hiddenText("IGNITE_DEFAULT_STORAGE_ENGINE", "")
-        hiddenText("env.GRADLE_OPTS", 
"-PextraJvmArgs=\"%IGNITE_COMPATIBILITY_TEST_ALL_VERSIONS% 
%IGNITE_ZONE_BASED_REPLICATION% %IGNITE_DEFAULT_STORAGE_ENGINE%\"")
+        hiddenText("env.GRADLE_OPTS", 
"-PextraJvmArgs=\"%IGNITE_COMPATIBILITY_TEST_ALL_VERSIONS% 
%IGNITE_DEFAULT_STORAGE_ENGINE%\"")
     }
 
     steps {

Reply via email to