Skip to content

Commit d158ec6

Browse files
authoredJul 31, 2024
Fix MacOS Mx (arm64) and Linux (arm64, ppc64le, s390x) checks (opensearch-project#15036)
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
1 parent 597747d commit d158ec6

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)
Please sign in to comment.