assignUser commented on code in PR #14235:
URL: https://github.com/apache/arrow/pull/14235#discussion_r1036900449
##########
dev/tasks/r/github.macos-linux.local.yml:
##########
@@ -45,11 +45,20 @@ jobs:
- name: Configure non-autobrew dependencies (linux)
run: |
sudo apt-get update
- sudo apt install libcurl4-openssl-dev libssl-dev
+ sudo apt install -y \
+ libbrotli-dev \
+ libcurl4-openssl-dev \
+ libidn2-dev \
+ libkrb5-dev \
+ libldap-dev \
+ libnghttp2-dev \
+ libpsl-dev \
+ librtmp-dev \
+ libssh-dev \
+ libssh2-1-dev \
+ libssl-dev \
+ libzstd-dev
Review Comment:
These appear in 3+ places now, should we make them a macro?
##########
dev/tasks/r/github.packages.yml:
##########
@@ -309,12 +309,22 @@ jobs:
curl -s \
https://raw.githubusercontent.com/{{ arrow.github_repo }}/{{
arrow.head }}/ci/scripts/install_sccache.sh | \
bash -s unknown-linux-musl /usr/local/bin
- - run: sudo apt update && sudo apt install libcurl4-openssl-dev
- - name: Prepare PKG_CONFIG_PATH for Homebrew
+ - name: Install curl and its dependencies for static link
run: |
- # zstd is installed by Homebrew on GitHub Actions.
- echo "PKG_CONFIG_PATH=$(brew
--prefix)/lib/pkgconfig${PKG_CONFIG_PATH:+:${PKG_CONFIG_PATH}}" \
- >> "$GITHUB_ENV"
+ sudo apt update
+ sudo apt install -y \
+ libbrotli-dev \
+ libcurl4-openssl-dev \
+ libidn2-dev \
Review Comment:
A comment to explain the need for these would be nice :)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]