Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
079e31c
GH-50886: Use bundled Abseil in macOS CI to avoid deprecation errors
hiroyuki-sato Aug 16, 2026
4f0443c
GH-50868: Use bundled Abseil in macOS CI to avoid deprecation errors
hiroyuki-sato Aug 17, 2026
65a648c
GH-50868: Use bundled Abseil in macOS CI to avoid deprecation errors
hiroyuki-sato Aug 17, 2026
2030614
GH-50868: Use bundled Abseil in macOS CI to avoid deprecation errors
hiroyuki-sato Aug 17, 2026
ca67b5f
GH-50868: Use bundled Abseil in macOS CI to avoid deprecation errors
hiroyuki-sato Aug 17, 2026
77733d9
GH-50868: Use bundled Abseil in macOS CI to avoid deprecation errors
hiroyuki-sato Aug 17, 2026
f1ddadd
GH-50868: Use bundled Abseil in macOS CI to avoid deprecation errors
hiroyuki-sato Aug 17, 2026
e635f7b
GH-50868: Use bundled Abseil in macOS CI to avoid deprecation errors
hiroyuki-sato Aug 17, 2026
ca2e585
GH-50868: Use bundled Abseil in macOS CI to avoid deprecation errors
hiroyuki-sato Aug 17, 2026
28539b2
GH-50868: Use bundled Abseil in macOS CI to avoid deprecation errors
hiroyuki-sato Aug 17, 2026
5c0a733
GH-50868: Use bundled Abseil in macOS CI to avoid deprecation errors
hiroyuki-sato Aug 18, 2026
d24dea3
GH-50868: Use bundled Abseil in macOS CI to avoid deprecation errors
hiroyuki-sato Aug 18, 2026
43d0043
GH-50868: Use bundled Abseil in macOS CI to avoid deprecation errors
hiroyuki-sato Aug 18, 2026
1e50e73
GH-50868: Use bundled Abseil in macOS CI to avoid deprecation errors
hiroyuki-sato Aug 18, 2026
1daa615
GH-50868: Use bundled Abseil in macOS CI to avoid deprecation errors
hiroyuki-sato Aug 18, 2026
9ec07f2
Try no-error=deprecated-declarations
hiroyuki-sato Aug 19, 2026
2d54ca8
Try no-error=deprecated-declarations2
hiroyuki-sato Aug 19, 2026
415a267
Try no-error=deprecated-declarations3
hiroyuki-sato Aug 19, 2026
2e5cc60
Try no-error=deprecated-declarations4
hiroyuki-sato Aug 19, 2026
c13d2c6
Skip red-arrow-flight test on macOS
hiroyuki-sato Aug 19, 2026
6d7e434
Use google-cloud-cpp issue
kou Aug 19, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion c_glib/test/flight-sql/test-client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def setup
@server = nil
omit("Arrow Flight SQL is required") unless defined?(ArrowFlightSQL)
omit("Unstable on Windows") if Gem.win_platform?
omit("Unstable on x86_64 macOS") if /x86_64-darwin/.match?(RUBY_PLATFORM)
omit("Unstable on macOS") if /darwin/.match?(RUBY_PLATFORM)
@server = Helper::FlightSQLServer.new
host = "127.0.0.1"
location = ArrowFlight::Location.new("grpc://#{host}:0")
Expand Down
7 changes: 7 additions & 0 deletions cpp/src/arrow/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -998,6 +998,13 @@ if(ARROW_FILESYSTEM)
"-Wno-documentation;-Wno-documentation-deprecated-sync"
)
endif()
# Workaround deprecated Abseil APIs used by google-cloud-cpp on macOS
# https://github.com/googleapis/google-cloud-cpp/issues/16354
if(APPLE)
set_property(SOURCE filesystem/gcsfs.cc filesystem/gcsfs_internal.cc
APPEND
PROPERTY COMPILE_OPTIONS "-Wno-error=deprecated-declarations")
endif()
endif()
if(ARROW_HDFS)
list(APPEND ARROW_FILESYSTEM_SRCS filesystem/hdfs.cc)
Expand Down
Loading