Skip to content

Commit 9e5848f

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 90633af commit 9e5848f

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
@@ -135,6 +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
138139
139140
- name: Install cmake
140141
uses: jwlawson/actions-setup-cmake@v2
@@ -148,6 +149,6 @@ jobs:
148149
run: |
149150
export CXX=/bin/false
150151
export nparallel=$(( $(getconf _NPROCESSORS_ONLN) > 8 ? 8 : $(getconf _NPROCESSORS_ONLN) ))
151-
cmake ../
152+
cmake -DFLB_PREFER_SYSTEM_LIB_ZSTD=ON ../
152153
make -j $nparallel
153154
working-directory: build

0 commit comments

Comments
 (0)