Skip to content

Commit 8f87a41

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 5a9df7f commit 8f87a41

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
@@ -133,6 +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
136137
137138
- name: Install cmake
138139
uses: jwlawson/actions-setup-cmake@v2
@@ -146,6 +147,6 @@ jobs:
146147
run: |
147148
export CXX=/bin/false
148149
export nparallel=$(( $(getconf _NPROCESSORS_ONLN) > 8 ? 8 : $(getconf _NPROCESSORS_ONLN) ))
149-
cmake ../
150+
cmake -DPREFER_SYSTEM_LIB_ZSTD=ON ../
150151
make -j $nparallel
151152
working-directory: build

0 commit comments

Comments
 (0)