-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate to macos-13 runner image #783
Conversation
Apparently we use a too old Gradle version. |
0854f78
to
81f2eb9
Compare
Rebased onto main to incorporate #786, which removed the spark jobs |
It looks like |
The error seems to be:
|
Good point, when running locally on Linux I didn't get that error message. This change allowed the build to complete on my local system. diff --git a/apis/java/build.gradle b/apis/java/build.gradle
index 78c9fada..1a98c55b 100644
--- a/apis/java/build.gradle
+++ b/apis/java/build.gradle
@@ -213,6 +213,7 @@ task sourceJar(type: Jar) {
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier "javadoc"
from javadoc.destinationDir
+ duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
artifacts { |
@teo-tsirpanis @gspowley thanks for the troubleshooting assistance! @dudoslav opened a new PR #793 to combine everything, and the CI is green. Thanks Dušan! |
macos-12 runner image is deprecated
xref: actions/runner-images#10721, TileDB-Inc/TileDB#5350