-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Danny Chiao <[email protected]>
- Loading branch information
Showing
1 changed file
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -187,12 +187,24 @@ jobs: | |
cd dist/ | ||
pip install wheel | ||
for f in *.whl; do pip install $f || true; done | ||
- name: Install apache-arrow on ubuntu | ||
if: ${{ matrix.from-source && matrix.os == 'ubuntu-latest' }} | ||
run: | | ||
sudo apt update | ||
sudo apt install -y -V ca-certificates lsb-release wget | ||
wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb | ||
sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb | ||
sudo apt update | ||
sudo apt install -y -V libarrow-dev | ||
- name: Install apache-arrow on macos | ||
if: ${{ matrix.from-source && matrix.os == 'macos-10.15' && matrix.python-version != '3.10' }} | ||
run: brew install apache-arrow | ||
- name: Install dist with go | ||
if: ${{ matrix.from-source && (matrix.python-version != '3.10' || matrix.os == 'ubuntu-latest')}} | ||
env: | ||
COMPILE_GO: "True" | ||
run: | | ||
pip install 'grpcio-tools==1.47.0' 'pybindgen==0.22.0' | ||
pip install 'grpcio-tools==1.48.0' 'pybindgen==0.22.0' | ||
go install google.golang.org/protobuf/cmd/[email protected] | ||
go install google.golang.org/grpc/cmd/[email protected] | ||
pip install dist/*tar.gz | ||
|