Skip to content

Commit 6fd5ba4

Browse files
Fix MacOS Mx (arm64) and Linux (arm64, ppc64le, s390x) checks (opensearch-project#15036) (opensearch-project#15042)
(cherry picked from commit d158ec6) Signed-off-by: Andriy Redko <andriy.redko@aiven.io> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 3a70538 commit 6fd5ba4

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

buildSrc/src/main/java/org/opensearch/gradle/internal/InternalDistributionBwcSetupPlugin.java

+11-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,17 @@ private static List<DistributionProject> resolveArchiveProjects(File checkoutDir
158158
projects.addAll(asList("deb", "rpm"));
159159

160160
if (bwcVersion.onOrAfter("7.0.0")) { // starting with 7.0 we bundle a jdk which means we have platform-specific archives
161-
projects.addAll(asList("darwin-tar", "linux-tar", "windows-zip"));
161+
projects.addAll(
162+
asList(
163+
"darwin-tar",
164+
"darwin-arm64-tar",
165+
"linux-tar",
166+
"linux-arm64-tar",
167+
"linux-ppc64le-tar",
168+
"linux-s390x-tar",
169+
"windows-zip"
170+
)
171+
);
162172
} else { // prior to 7.0 we published only a single zip and tar archives
163173
projects.addAll(asList("zip", "tar"));
164174
}

0 commit comments

Comments
 (0)