Skip to content

Commit 1fc9530

Browse files
committed
Make Git workflows install pkg-config.
1 parent dff9543 commit 1fc9530

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/debian.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
apt-get update
2828
apt-get install --no-install-recommends -y \
29-
build-essential librocksdb-dev cython3 \
29+
build-essential librocksdb-dev cython3 python3-pkgconfig \
3030
python3-dev python3-pip python3-pytest \
3131
libsnappy-dev libbz2-dev liblz4-dev libz-dev
3232

.github/workflows/dist.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
# Avoid re-building the C library in every iteration by testing for
5050
# the build directory.
5151
CIBW_BEFORE_BUILD: >
52-
yum install -y bzip2-devel lz4-devel snappy-devel zlib-devel
52+
yum install -y python3-pkgconfig bzip2-devel lz4-devel snappy-devel zlib-devel
5353
python3-Cython &&
5454
test -d ${{ env.LIBROCKSDB_PATH }} || (
5555
git clone https://github.com/facebook/rocksdb --depth 1

0 commit comments

Comments
 (0)