Skip to content

Commit 389daf6

Browse files
workflows: exclude librdkafka-dev from pr-compile-without-cxx
Upstream is not really amused with the proposal to allow compilation without CXX support, see confluentinc/librdkafka#4366. So disable it from the check for now. Signed-off-by: Thomas Devoogdt <[email protected]>
1 parent 8f87a41 commit 389daf6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pr-compile-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133
run: |
134134
sudo apt-get update
135135
sudo apt-get install -y bison cmake flex gcc libssl-dev libyaml-dev
136-
sudo apt-get install -y libzstd-dev
136+
sudo apt-get install -y libzstd-dev librdkafka-dev
137137
138138
- name: Install cmake
139139
uses: jwlawson/actions-setup-cmake@v2
@@ -147,6 +147,6 @@ jobs:
147147
run: |
148148
export CXX=/bin/false
149149
export nparallel=$(( $(getconf _NPROCESSORS_ONLN) > 8 ? 8 : $(getconf _NPROCESSORS_ONLN) ))
150-
cmake -DPREFER_SYSTEM_LIB_ZSTD=ON ../
150+
cmake -DPREFER_SYSTEM_LIB_ZSTD=ON -DFLB_PREFER_SYSTEM_LIB_KAFKA=ON ../
151151
make -j $nparallel
152152
working-directory: build

0 commit comments

Comments
 (0)