-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #693 from cole-miller/fix-nolz4-build
Fix the build when liblz4 is missing and test it
- Loading branch information
Showing
2 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: CI Tests (no liblz4) | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up dependencies | ||
run: | | ||
sudo apt update | ||
sudo apt install -y libsqlite3-dev libuv1-dev | ||
sudo apt remove -y liblz4-dev | ||
- name: Build dqlite (liblz4 not present) | ||
run: | | ||
autoreconf -i | ||
./configure --enable-build-raft | ||
make -j$(nproc) | ||
make clean | ||
- name: Build dqlite (liblz4 requested and not present) | ||
run: | | ||
autoreconf -i | ||
! ./configure --enable-build-raft --with-lz4 | ||
- name: Install liblz4 | ||
run: | | ||
sudo apt install liblz4-dev | ||
- name: Build dqlite (liblz4 present but ignored) | ||
run: | | ||
./configure --enable-build-raft --without-lz4 | ||
make -j$(nproc) | ||
! ldd .libs/libdqlite.so | grep lz4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters