File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -187,6 +187,18 @@ jobs:
187187 cd dist/
188188 pip install wheel
189189 for f in *.whl; do pip install $f || true; done
190+ - name : Install apache-arrow on ubuntu
191+ if : ${{ matrix.from-source && matrix.os == 'ubuntu-latest' }}
192+ run : |
193+ sudo apt update
194+ sudo apt install -y -V ca-certificates lsb-release wget
195+ 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
196+ sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
197+ sudo apt update
198+ sudo apt install -y -V libarrow-dev
199+ - name : Install apache-arrow on macos
200+ if : ${{ matrix.from-source && matrix.os == 'macos-10.15' && matrix.python-version != '3.10' }}
201+ run : brew install apache-arrow
190202 - name : Install dist with go
191203 if : ${{ matrix.from-source && (matrix.python-version != '3.10' || matrix.os == 'ubuntu-latest')}}
192204 env :
You can’t perform that action at this time.
0 commit comments