Skip to content

Commit

Permalink
Fix order of run commands to collect libgraal profile first.
Browse files Browse the repository at this point in the history
  • Loading branch information
medoussboug committed May 21, 2024
1 parent d06b6a1 commit 0e998a9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions vm/ci/ci_common/common-runspec.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,10 @@ local evaluate_late(key, object) = task_spec(run_spec.evaluate_late({key:object}
] + vm.check_graalvm_base_build('$GRAALVM_DIST', self.os, self.arch, if (self.jdk_name == 'jdk-latest') then 'latest' else std.toString(self.jdk_version))
}),

local deploy_graalvm_base = svm_common + common_os_deploy + name + task_spec(vm.check_structure) + build_base_graalvm_image + task_spec({
run +: vm.collect_profiles(mx_prefix=self.mx_vm_common) + [
local deploy_graalvm_base = svm_common + common_os_deploy + name + task_spec(vm.check_structure) + task_spec({
run +: vm.collect_profiles(mx_prefix=self.mx_vm_common),
}) + build_base_graalvm_image + task_spec({
run +: [
self.mx_vm_common + vm.vm_profiles + record_file_sizes,
upload_file_sizes,
],
Expand Down

0 comments on commit 0e998a9

Please sign in to comment.