[K/N] Don't build distribution for deprecated targets ^KT-59008

This commit is contained in:
Alexander Shabalin
2023-08-10 16:57:08 +02:00
committed by Space Team
parent e96dcef571
commit 18fb2ec476
5 changed files with 15 additions and 33 deletions
-28
View File
@@ -165,8 +165,6 @@ bitcode {
}
compilerArgs.add("-DCUSTOM_ALLOCATOR")
onlyIf { target.supportsThreads() }
}
module("opt_alloc") {
@@ -237,8 +235,6 @@ bitcode {
testFixtures {}
test {}
}
onlyIf { target.supportsThreads() }
}
module("experimental_memory_manager_custom") {
@@ -251,8 +247,6 @@ bitcode {
}
compilerArgs.add("-DCUSTOM_ALLOCATOR")
onlyIf { target.supportsThreads() }
}
module("common_gc") {
@@ -262,8 +256,6 @@ bitcode {
main {}
test {}
}
onlyIf { target.supportsThreads() }
}
module("noop_gc") {
@@ -273,8 +265,6 @@ bitcode {
main {}
testFixtures {}
}
onlyIf { target.supportsThreads() }
}
module("noop_gc_custom") {
@@ -286,8 +276,6 @@ bitcode {
}
compilerArgs.add("-DCUSTOM_ALLOCATOR")
onlyIf { target.supportsThreads() }
}
module("same_thread_ms_gc") {
@@ -298,8 +286,6 @@ bitcode {
testFixtures {}
test {}
}
onlyIf { target.supportsThreads() }
}
module("same_thread_ms_gc_custom") {
@@ -312,8 +298,6 @@ bitcode {
}
compilerArgs.add("-DCUSTOM_ALLOCATOR")
onlyIf { target.supportsThreads() }
}
module("concurrent_ms_gc") {
@@ -324,8 +308,6 @@ bitcode {
testFixtures {}
test {}
}
onlyIf { target.supportsThreads() }
}
module("concurrent_ms_gc_custom") {
@@ -338,8 +320,6 @@ bitcode {
}
compilerArgs.add("-DCUSTOM_ALLOCATOR")
onlyIf { target.supportsThreads() }
}
module("common_gcScheduler") {
@@ -349,8 +329,6 @@ bitcode {
main {}
test {}
}
onlyIf { target.supportsThreads() }
}
module("manual_gcScheduler") {
@@ -359,8 +337,6 @@ bitcode {
sourceSets {
main {}
}
onlyIf { target.supportsThreads() }
}
module("adaptive_gcScheduler") {
@@ -370,8 +346,6 @@ bitcode {
main {}
test {}
}
onlyIf { target.supportsThreads() }
}
module("aggressive_gcScheduler") {
@@ -381,8 +355,6 @@ bitcode {
main {}
test {}
}
onlyIf { target.supportsThreads() }
}
testsGroup("custom_alloc_runtime_tests") {