Skip to content

Commit 6872704

Browse files
committed
do not request gdb for darwin-aarch64
1 parent 450e6a6 commit 6872704

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

ci.jsonnet

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ local part_definitions = {
199199
HOST_VM_CONFIG: "graal-enterprise",
200200
},
201201
},
202-
local svm = {
202+
gdb_svm: {
203203
downloads+: {
204204
GDB: { name: "gdb", version: "7.11.1", platformspecific: true },
205205
},
@@ -213,13 +213,13 @@ local part_definitions = {
213213
environment+: {
214214
HOST_VM_CONFIG: "graal-core",
215215
},
216-
} + svm,
216+
},
217217
native_ee: {
218218
mx_env:: "native-ee",
219219
environment+: {
220220
HOST_VM_CONFIG: "graal-enterprise",
221221
},
222-
} + svm,
222+
},
223223
},
224224

225225
jdk: {
@@ -546,14 +546,14 @@ local composition_environment = utils.add_inclusion_tracking(part_definitions, "
546546
"ruby-test-compiler-graal-enterprise-11": $.platform.linux + $.jdk.v11 + $.env.jvm_ee + gate + $.use.truffleruby + $.run.test_compiler,
547547
"ruby-test-compiler-graal-enterprise-17": $.platform.linux + $.jdk.v17 + $.env.jvm_ee + gate + $.use.truffleruby + $.run.test_compiler,
548548

549-
"ruby-test-svm-graal-core-linux-11": $.platform.linux + $.jdk.v11 + $.env.native + gate + native_tests,
550-
"ruby-test-svm-graal-core-linux-17": $.platform.linux + $.jdk.v17 + $.env.native + gate + native_tests,
551-
"ruby-test-svm-graal-core-darwin-amd64-11": $.platform.darwin_amd64 + $.jdk.v11 + $.env.native + gate + native_tests,
552-
"ruby-test-svm-graal-core-darwin-amd64-17": $.platform.darwin_amd64 + $.jdk.v17 + $.env.native + gate + native_tests,
553-
"ruby-test-svm-graal-core-darwin-aarch64-11": $.platform.darwin_aarch64 + $.jdk.v11 + $.env.native + gate + native_tests,
554-
"ruby-test-svm-graal-core-darwin-aarch64-17": $.platform.darwin_aarch64 + $.jdk.v17 + $.env.native + gate + native_tests,
555-
"ruby-test-svm-graal-enterprise-linux": $.platform.linux + $.jdk.v11 + $.env.native_ee + gate + native_tests,
556-
"ruby-test-svm-graal-enterprise-darwin-aarch64 ": $.platform.darwin_aarch64 + $.jdk.v11 + $.env.native_ee + gate + native_tests,
549+
"ruby-test-svm-graal-core-linux-11": $.platform.linux + $.jdk.v11 + $.env.native +$.env.gdb_svm + gate + native_tests,
550+
"ruby-test-svm-graal-core-linux-17": $.platform.linux + $.jdk.v17 + $.env.native +$.env.gdb_svm + gate + native_tests,
551+
"ruby-test-svm-graal-core-darwin-amd64-11": $.platform.darwin_amd64 + $.jdk.v11 + $.env.native +$.env.gdb_svm + gate + native_tests,
552+
"ruby-test-svm-graal-core-darwin-amd64-17": $.platform.darwin_amd64 + $.jdk.v17 + $.env.native +$.env.gdb_svm + gate + native_tests,
553+
"ruby-test-svm-graal-core-darwin-aarch64-11": $.platform.darwin_aarch64 + $.jdk.v11 + $.env.native + gate + native_tests,
554+
"ruby-test-svm-graal-core-darwin-aarch64-17": $.platform.darwin_aarch64 + $.jdk.v17 + $.env.native + gate + native_tests,
555+
"ruby-test-svm-graal-enterprise-linux": $.platform.linux + $.jdk.v11 + $.env.native_ee +$.env.gdb_svm + gate + native_tests,
556+
"ruby-test-svm-graal-enterprise-darwin-aarch64 ": $.platform.darwin_aarch64 + $.jdk.v11 + $.env.native_ee + gate + native_tests,
557557
},
558558

559559
local other_rubies = {
@@ -569,8 +569,8 @@ local composition_environment = utils.add_inclusion_tracking(part_definitions, "
569569
local svm_configurations = {
570570
local shared = $.cap.bench + $.cap.daily + $.use.truffleruby + $.use.build,
571571

572-
"svm-graal-core": shared + $.env.native,
573-
"svm-graal-enterprise": shared + $.env.native_ee,
572+
"svm-graal-core": shared + $.env.native + $.env.gdb_svm,
573+
"svm-graal-enterprise": shared + $.env.native_ee + $.env.gdb_svm,
574574
},
575575

576576
bench_builds:

0 commit comments

Comments
 (0)