Skip to content

Commit 7a75112

Browse files
committed
[GR-70618] Adjust deployed artifacts.
PullRequest: graal/22295
2 parents 6bc4f3c + 5d2078d commit 7a75112

File tree

3 files changed

+3
-59
lines changed

3 files changed

+3
-59
lines changed

sdk/mx.sdk/mx_sdk_vm_ng.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,8 @@ def __init__(self, suite, name=None, deps=None, excludedLibs=None, platformDepen
11591159
}
11601160
}
11611161
self.standalone_dir_dist = standalone_dir_dist
1162-
maven = { 'groupId': 'org.graalvm', 'tag': 'standalone' }
1162+
maven = { 'groupId': 'org.graalvm', 'tag': 'standalone' } if suite.name != 'truffleruby' else {}
1163+
11631164
assert theLicense is None, "the 'license' attribute is ignored for DeliverableStandaloneArchive"
11641165
theLicense = ['GFTC' if is_enterprise() else 'UPL']
11651166
super().__init__(suite, name=dist_name, deps=[], layout=layout, path=None, theLicense=theLicense, platformDependent=True, path_substitutions=path_substitutions, string_substitutions=string_substitutions, maven=maven, defaultBuild=defaultBuild)

vm/ce-release-artifacts.json

Lines changed: 0 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -171,62 +171,6 @@
171171
}
172172
]
173173
},
174-
{
175-
"name": "ruby-native-standalone-svm-java26",
176-
"core": true,
177-
"jdk": "jdk_26",
178-
"override_name":"truffleruby",
179-
"artifacts": [
180-
{
181-
"os": "linux",
182-
"arch": "amd64",
183-
"name_template": "{name}-community-{version}-{os}-{arch}"
184-
},
185-
{
186-
"os": "linux",
187-
"arch": "aarch64",
188-
"name_template": "{name}-community-{version}-{os}-{arch}"
189-
},
190-
{
191-
"os": "darwin",
192-
"arch": "amd64",
193-
"name_template": "{name}-community-{version}-macos-{arch}"
194-
},
195-
{
196-
"os": "darwin",
197-
"arch": "aarch64",
198-
"name_template": "{name}-community-{version}-macos-{arch}"
199-
}
200-
]
201-
},
202-
{
203-
"name": "ruby-java-standalone-svm-java26",
204-
"core": true,
205-
"jdk": "jdk_26",
206-
"override_name":"truffleruby",
207-
"artifacts": [
208-
{
209-
"os": "linux",
210-
"arch": "amd64",
211-
"name_template": "{name}-community-jvm-{version}-{os}-{arch}"
212-
},
213-
{
214-
"os": "linux",
215-
"arch": "aarch64",
216-
"name_template": "{name}-community-jvm-{version}-{os}-{arch}"
217-
},
218-
{
219-
"os": "darwin",
220-
"arch": "amd64",
221-
"name_template": "{name}-community-jvm-{version}-macos-{arch}"
222-
},
223-
{
224-
"os": "darwin",
225-
"arch": "aarch64",
226-
"name_template": "{name}-community-jvm-{version}-macos-{arch}"
227-
}
228-
]
229-
},
230174
{
231175
"name": "python-native-standalone-svm-java26",
232176
"core": true,

vm/ci/ci_common/common.jsonnet

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ local devkits = graal_common.devkits;
212212
dynamic_ce_imports(os, arch)::
213213
local legacy_imports = '/tools,/compiler,/graal-js,/espresso,/substratevm';
214214
local ce_windows_imports = legacy_imports + ',/vm,/wasm,/sulong,graalpython';
215-
local non_windows_imports = ',truffleruby';
215+
local non_windows_imports = '';
216216

217217
if (os == 'windows') then
218218
ce_windows_imports
@@ -238,7 +238,6 @@ local devkits = graal_common.devkits;
238238
'--suite', 'graalpython'
239239
];
240240
local non_windows_suites = [
241-
'--suite', 'truffleruby',
242241
];
243242

244243
if (os == 'windows') then

0 commit comments

Comments
 (0)