-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
GH-43377: [Java][CI] Java-Jars CI is Failing with a linking error on macOS #43385
Changes from all commits
606ee91
df6e5b8
834a4d4
019f3d2
85c1244
10c59a8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,7 +83,7 @@ jobs: | |
- { runs_on: ["macos-13"], arch: "x86_64"} | ||
- { runs_on: ["macos-14"], arch: "aarch_64" } | ||
env: | ||
MACOSX_DEPLOYMENT_TARGET: "10.15" | ||
MACOSX_DEPLOYMENT_TARGET: "14.0" | ||
steps: | ||
{{ macros.github_checkout_arrow()|indent }} | ||
- name: Set up Python | ||
|
@@ -140,6 +140,12 @@ jobs: | |
brew uninstall protobuf | ||
|
||
brew bundle --file=arrow/java/Brewfile | ||
|
||
# We want to use the bundled googletest for static linking. Since | ||
# both BUNDLED and brew options are enabled, it could cause a conflict | ||
# when there is a version mismatch. | ||
# We uninstall googletest to ensure using the bundled googletest. | ||
brew uninstall googletest | ||
Comment on lines
+143
to
+148
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you move this part before There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure @kou I will make a follow up PR shortly. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
- name: Build C++ libraries | ||
env: | ||
{{ macros.github_set_sccache_envvars()|indent(8) }} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vibhatha That's quite the bump, I am pretty sure we also want to support less recent macos.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, my bad for merging this quickly. I was too eager to get java-jars working again. Let's revert that part of the diff since it's not necessary.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No worry, it's a good goal^^ We can likely bump it to 11 or even 12 (as 11 is also eol... but we don't have a support policy so...)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@assignUser this was an artifact from my previous failed attempt to fix this issue. I have not reverted that. But I will revert it shortly.