Skip to content

Commit 034e374

Browse files
workflows: exclude libzstd from pr-compile-without-cxx
This is a temporary fix, until facebook/zstd@769723a makes its way to a release. Please revert this commit once we bump to the next libzstd version. Signed-off-by: Thomas Devoogdt <[email protected]>
1 parent 7f221a1 commit 034e374

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ jobs:
130130
run: |
131131
sudo apt-get update
132132
sudo apt-get install -y bison cmake flex gcc libssl-dev libyaml-dev
133+
sudo apt-get install -y libzstd-dev
133134
134135
- name: Checkout Fluent Bit code
135136
uses: actions/checkout@v4
@@ -138,6 +139,6 @@ jobs:
138139
run: |
139140
export CXX=/bin/false
140141
export nparallel=$(( $(getconf _NPROCESSORS_ONLN) > 8 ? 8 : $(getconf _NPROCESSORS_ONLN) ))
141-
cmake ../
142+
cmake -DPREFER_SYSTEM_LIB_ZSTD=ON ../
142143
make -j $nparallel
143144
working-directory: build

0 commit comments

Comments
 (0)