-
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-35274: [Java][CI] Enable GCS on MacOS #35277
Changes from 3 commits
a05f58e
acf8e93
d6da99d
df2a7e0
26d808d
3490e48
2213140
ddca08f
e1db91b
6d75cbd
6ae8fdd
5038e14
c5ad475
828d689
5e996fb
1deb06b
480a896
49ee27c
9acf7dc
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 |
---|---|---|
|
@@ -60,6 +60,9 @@ rm -f $LOGFILE $LOGFILE.gz | |
|
||
pipe_cmd=cat | ||
|
||
# Install the gcs testbench | ||
sh $ROOT/../ci/scripts/install_gcs_testbench.sh default | ||
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. I don't think we should add this here. Why do you need this change? 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. If we enable ARROW_GCS some test need some software base that is installed by this shell. Just moved inside of MacOS scope. |
||
|
||
function setup_sanitizers() { | ||
# Sets environment variables for different sanitizers (it configures how) the run_tests. Function works. | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,4 @@ | |
|
||
brew "openjdk@11" | ||
brew "sccache" | ||
brew "curl" | ||
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. Perhaps keep this file in alphabetical order? 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. Juste deleted, that was added for testing purpose that at the end we add CURL_ROOT on the github.yml file |
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.
Why does Snappy need to be enabled here?
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.
At Arrow build, ARROW_WITH_SNAPPY is not added by default and GCS use that codec by default.
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.
If
ARROW_WITH_SNAPPY
is required forARROW_GCS
, could you enableARROW_WITH_SNAPPY
automatically withARROW_GCS
?