Skip to content

Commit dc7edcb

Browse files
committed
Update how arrow is installed in workflow
1 parent 97af811 commit dc7edcb

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/linux.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,16 @@ jobs:
3636
- name: Install Ubuntu dependencies
3737
run: |
3838
sudo apt update
39-
sudo apt install -y libarrow-dev libparquet-dev libzstd-dev ccache
39+
sudo apt update
40+
sudo apt install -y -V ca-certificates lsb-release wget
41+
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
42+
sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
43+
sudo apt install -y -V libarrow-dev # For C++
44+
sudo apt install -y -V libarrow-glib-dev # For GLib (C)
45+
sudo apt install -y -V libarrow-dataset-dev # For Apache Arrow Dataset C++
46+
sudo apt install -y -V libparquet-dev # For Apache Parquet C++
47+
sudo apt install -y -V libparquet-glib-dev # For Apache Parquet GLib (C)
48+
sudo apt install -y libzstd-dev ccache
4049
4150
- name: Install Catch2
4251
run: |

0 commit comments

Comments
 (0)