Skip to content

Commit

Permalink
Deploy dummy javadoc until JDK-8332039 is fixed in JDK-latest [GR-540…
Browse files Browse the repository at this point in the history
…10].
  • Loading branch information
ansalond committed May 10, 2024
1 parent b696a77 commit 158c711
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vm/ci/ci_common/common.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ local devkits = graal_common.devkits;
local mvn_artifacts_snippet =
# remotely deploy only the suites that are defined in the current repository, to avoid duplicated deployments
if (vm.maven_deploy_base_functions.edition == 'ce') then
self.deploy_ce(os, arch, false, dry_run, [remote_mvn_repo])
self.deploy_ce(os, arch, false, dry_run, ['--dummy-javadoc', remote_mvn_repo])
else
self.deploy_ee(os, arch, false, dry_run, ['--dummy-javadoc', '--skip', std.join(',', self.polyglot_isolate_distributions(polyglot_isolate_languages, os, arch)) + ',TOOLS_COMMUNITY,LANGUAGES_COMMUNITY', remote_mvn_repo])
+ self.deploy_ee(os, arch, false, dry_run, ['--dummy-javadoc', '--only', std.join(',', self.polyglot_isolate_distributions(polyglot_isolate_languages, os, arch, true)) + ',TOOLS_COMMUNITY,LANGUAGES_COMMUNITY', remote_mvn_repo], extra_mx_args=['--suite', 'graal-js']);
Expand All @@ -336,7 +336,7 @@ local devkits = graal_common.devkits;
+ (
# Locally deploy all relevant suites
if (vm.maven_deploy_base_functions.edition == 'ce') then
self.deploy_ce(os, arch, false, dry_run, [local_repo, '${LOCAL_MAVEN_REPO_URL}'])
self.deploy_ce(os, arch, false, dry_run, ['--dummy-javadoc', local_repo, '${LOCAL_MAVEN_REPO_URL}'])
else
self.deploy_ce(os, arch, false, dry_run, ['--dummy-javadoc', '--skip', std.join(',', self.polyglot_isolate_distributions(polyglot_isolate_languages, os, arch)) + ',TOOLS_COMMUNITY,LANGUAGES_COMMUNITY', local_repo, '${LOCAL_MAVEN_REPO_URL}'])
+ self.deploy_ee(os, arch, false, dry_run, ['--dummy-javadoc', '--only', std.join(',', self.polyglot_isolate_distributions(polyglot_isolate_languages, os, arch)) + ',TOOLS_COMMUNITY,LANGUAGES_COMMUNITY', local_repo, '${LOCAL_MAVEN_REPO_URL}'], extra_mx_args=['--suite', 'graal-js'])
Expand Down

0 comments on commit 158c711

Please sign in to comment.