Skip to content

Commit b4c0a26

Browse files
committed
build: enable Parquet in CI
Signed-off-by: Arbin Cheng <[email protected]>
1 parent 6749d72 commit b4c0a26

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/unit-tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- "-DFLB_SANITIZE_THREAD=On"
5454
- "-DFLB_SIMD=On"
5555
- "-DFLB_SIMD=Off"
56-
- "-DFLB_ARROW=On"
56+
- "-DFLB_PARQUET_ENCODER=On"
5757
- "-DFLB_COMPILER_STRICT_POINTER_TYPES=On"
5858
cmake_version:
5959
- "3.31.6"
@@ -69,7 +69,7 @@ jobs:
6969
compiler:
7070
cc: clang
7171
cxx: clang++
72-
- flb_option: "-DFLB_ARROW=On"
72+
- flb_option: "-DFLB_PARQUET_ENCODER=On"
7373
compiler:
7474
cc: clang
7575
cxx: clang++
@@ -114,15 +114,15 @@ jobs:
114114
with:
115115
repository: calyptia/fluent-bit-ci
116116
path: ci
117-
- name: Setup Apache Arrow libraries for parquet (-DFLB_ARROW=On Only)
118-
if: matrix.flb_option == '-DFLB_ARROW=On'
117+
- name: Setup Apache Arrow libraries for Parquet encoder (-DFLB_PARQUET_ENCODER=On Only)
118+
if: matrix.flb_option == '-DFLB_PARQUET_ENCODER=On'
119119
run: |
120120
sudo apt-get update
121121
sudo apt-get install -y -V ca-certificates lsb-release wget
122-
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
122+
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
123123
sudo apt-get install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
124124
sudo apt-get update
125-
sudo apt-get install -y -V libarrow-glib-dev libparquet-glib-dev
125+
sudo apt-get install -y -V libarrow-dev libparquet-dev
126126
127127
- name: ${{ matrix.compiler.cc }} & ${{ matrix.compiler.cxx }} - ${{ matrix.flb_option }}
128128
run: |

0 commit comments

Comments
 (0)