Skip to content

Commit e2504ea

Browse files
committed
Use apt-get instead of apt because apt has unstable API
1 parent dc7edcb commit e2504ea

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

.github/workflows/linux.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,15 @@ jobs:
3535

3636
- name: Install Ubuntu dependencies
3737
run: |
38-
sudo apt update
39-
sudo apt update
40-
sudo apt install -y -V ca-certificates lsb-release wget
38+
sudo apt-get update
4139
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
40+
sudo apt-get install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
41+
sudo apt-get install -y -V libarrow-dev # For C++
42+
sudo apt-get install -y -V libarrow-glib-dev # For GLib (C)
43+
sudo apt-get install -y -V libarrow-dataset-dev # For Apache Arrow Dataset C++
44+
sudo apt-get install -y -V libparquet-dev # For Apache Parquet C++
45+
sudo apt-get install -y -V libparquet-glib-dev # For Apache Parquet GLib (C)
46+
sudo apt-get install -y libzstd-dev ccache
4947
5048
- name: Install Catch2
5149
run: |

0 commit comments

Comments
 (0)