Skip to content

Commit a3b205b

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 9e5848f commit a3b205b

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
@@ -135,7 +135,7 @@ jobs:
135135
run: |
136136
sudo apt-get update
137137
sudo apt-get install -y bison cmake flex gcc libssl-dev libyaml-dev
138-
sudo apt-get install -y libzstd-dev
138+
sudo apt-get install -y libzstd-dev librdkafka-dev
139139
140140
- name: Install cmake
141141
uses: jwlawson/actions-setup-cmake@v2
@@ -149,6 +149,6 @@ jobs:
149149
run: |
150150
export CXX=/bin/false
151151
export nparallel=$(( $(getconf _NPROCESSORS_ONLN) > 8 ? 8 : $(getconf _NPROCESSORS_ONLN) ))
152-
cmake -DFLB_PREFER_SYSTEM_LIB_ZSTD=ON ../
152+
cmake -DFLB_PREFER_SYSTEM_LIB_ZSTD=ON -DFLB_PREFER_SYSTEM_LIB_KAFKA=ON ../
153153
make -j $nparallel
154154
working-directory: build

0 commit comments

Comments
 (0)