Skip to content

Commit 1dc96dc

Browse files
ThomasDevoogdtpatrick-stephens
authored andcommitted
workflows: pr-compile-check.yaml: add libsqlite3-dev system library test
Signed-off-by: Thomas Devoogdt <[email protected]>
1 parent 0b299f2 commit 1dc96dc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ jobs:
5959
- name: Install system libraries for this test
6060
run: |
6161
sudo apt-get update
62-
sudo apt-get install -y libjemalloc-dev libluajit-5.1-dev libnghttp2-dev
62+
sudo apt-get install -y libjemalloc-dev libluajit-5.1-dev libnghttp2-dev \
63+
libsqlite3-dev
6364
mkdir -p /tmp/libbacktrace/build && \
6465
curl -L https://github.com/ianlancetaylor/libbacktrace/archive/8602fda.tar.gz | \
6566
tar --strip-components=1 -xzC /tmp/libbacktrace/ && \
@@ -97,4 +98,5 @@ jobs:
9798
echo "$ldd_result" | grep libjemalloc
9899
echo "$ldd_result" | grep libluajit
99100
echo "$ldd_result" | grep libnghttp2
101+
echo "$ldd_result" | grep libsqlite3
100102
working-directory: build

0 commit comments

Comments
 (0)