Skip to content

Commit dac9f3d

Browse files
authored
ci: Remove workaround for ADBC 20 (#13)
The current ADBC is 21: https://github.com/apache/arrow-adbc/releases So we can remove the workaround.
1 parent 685c9fe commit dac9f3d

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

.github/workflows/test.yaml

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -32,29 +32,6 @@ jobs:
3232
# We can't use "bundler-cache: true" with ruby/setup-ruby
3333
# because it doesn't cache dependencies installed by
3434
# rubygems-requirements-system automatically.
35-
# This is a workaround until ADBC 20 is released.
36-
# See also: https://github.com/apache/arrow-adbc/issues/3178
37-
- name: Install the specific version of Apache Arrow
38-
run: |
39-
sudo apt update
40-
sudo apt install -y -V ca-certificates lsb-release wget
41-
wget https://packages.apache.org/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 update
44-
arrow_version=20.0.0
45-
adbc_version=19
46-
sudo apt install -y -V \
47-
gir1.2-adbc-1.0=${adbc_version}-1 \
48-
gir1.2-adbc-arrow-1.0=${adbc_version}-1 \
49-
gir1.2-arrow-1.0=${arrow_version}-1 \
50-
libadbc-arrow-glib-dev=${adbc_version}-1 \
51-
libadbc-driver-manager-dev=${adbc_version}-1 \
52-
libadbc-glib-dev=${adbc_version}-1 \
53-
libadbc-glib-dev=${adbc_version}-1 \
54-
libarrow-acero-dev=${arrow_version}-1 \
55-
libarrow-dev=${arrow_version}-1 \
56-
libarrow-glib-dev=${arrow_version}-1 \
57-
libparquet-dev=${arrow_version}-1
5835
- name: Install dependencies
5936
run: |
6037
MAKEFLAGS="-j$(nproc)" bundle install --jobs=$(nproc)
@@ -64,8 +41,6 @@ jobs:
6441
libadbc-driver-sqlite-dev
6542
latest_version=
6643
- name: "Test: SQLite3"
67-
# We can remove this once ADBC 20 is released.
68-
continue-on-error: true
6944
run: |
7045
bundle exec rake
7146
- name: "Prepare test environment: PostgreSQL"

0 commit comments

Comments
 (0)