Skip to content
Open
Changes from all commits
Commits
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
8 changes: 8 additions & 0 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -516,9 +516,17 @@ services:
ARROW_PARQUET: "OFF"
ARROW_S3: "OFF"
ARROW_SUBSTRAIT: "OFF"
# GH-49767: Ubuntu 24.04 apt mold predates the fix for rui314/mold#1247
# (fixed in mold 2.31.0). Remove this if apt ships mold >= 2.31.0.
# see https://github.com/rui314/mold/issues/1247
MOLD_URL: "https://archive.ubuntu.com/ubuntu/pool/universe/m/mold/mold_2.37.1+dfsg-1_amd64.deb"
# Register ODBC before running tests
command: >
/bin/bash -c "
curl -fsSL $$MOLD_URL -o /tmp/mold.deb &&
sudo apt-get update &&
sudo apt-get install -y /tmp/mold.deb &&
ld.mold --version &&
/arrow/ci/scripts/cpp_build.sh /arrow /build &&
sudo /arrow/cpp/src/arrow/flight/sql/odbc/install/unix/install_odbc.sh /usr/local/lib/libarrow_flight_sql_odbc.so &&
/arrow/ci/scripts/cpp_test.sh /arrow /build"
Expand Down
Loading