@@ -191,23 +191,20 @@ local part_definitions = {
191
191
GDB_BIN: "$GDB/bin/gdb" ,
192
192
},
193
193
},
194
- local darwin_amd64_enough_ram = { # GR-45839
195
- capabilities+: (if self .os == "darwin" && self .arch == "amd64" then ["!macmini_late_2014_8gb" ] else []),
196
- },
197
194
native: {
198
195
mx_env:: "native" ,
199
196
environment+: {
200
197
HOST_VM: "svm" ,
201
198
HOST_VM_CONFIG: "graal-core" ,
202
199
},
203
- } + darwin_amd64_enough_ram ,
200
+ },
204
201
native_ee: {
205
202
mx_env:: "native-ee" ,
206
203
environment+: {
207
204
HOST_VM: "svm" ,
208
205
HOST_VM_CONFIG: "graal-enterprise" ,
209
206
},
210
- } + darwin_amd64_enough_ram ,
207
+ },
211
208
host_inlining_log: {
212
209
# Same as in mx.truffleruby/native-host-inlining
213
210
mx_options+:: [
@@ -258,7 +255,8 @@ local part_definitions = {
258
255
darwin_amd64: common.darwin_amd64 + common_deps + {
259
256
platform_name:: "DarwinAMD64" ,
260
257
"$.cap" :: {
261
- normal_machine: ["darwin_mojave" ],
258
+ # GR-45839, GR-46279: exclude macmini_late_2014_8gb, they are too slow, have too little RAM and cause various timeouts
259
+ normal_machine: ["darwin_mojave" , "!macmini_late_2014_8gb" ],
262
260
},
263
261
environment+: {
264
262
LANG: "en_US.UTF-8" ,
@@ -551,7 +549,7 @@ local composition_environment = utils.add_inclusion_tracking(part_definitions, "
551
549
"ruby-test-svm-graal-core-darwin-amd64-20" : $.platform.darwin_amd64 + $.jdk.v20 + $.env.native + $.env.gdb_svm + gate + native_tests,
552
550
"ruby-test-svm-graal-core-darwin-aarch64-17" : $.platform.darwin_aarch64 + $.jdk.v17 + $.env.native + gate + native_tests,
553
551
"ruby-test-svm-graal-core-darwin-aarch64-20" : $.platform.darwin_aarch64 + $.jdk.v20 + $.env.native + gate + native_tests,
554
- "ruby-test-svm-graal-enterprise-linux" : $.platform.linux + $.jdk.v17 + $.env.native_ee + $.env.gdb_svm + gate + native_tests + $.env.host_inlining_log,
552
+ "ruby-test-svm-graal-enterprise-linux" : $.platform.linux + $.jdk.v17 + $.env.native_ee + $.env.gdb_svm + gate + native_tests + $.env.host_inlining_log + { timelimit: "01:30:00" } ,
555
553
"ruby-test-svm-graal-enterprise-darwin-aarch64" : $.platform.darwin_aarch64 + $.jdk.v17 + $.env.native_ee + gate + native_tests,
556
554
},
557
555
0 commit comments