Add CI job for latest SQLite, libuv, liblz4 #11
Workflow file for this run
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
name: CI Tests (latest deps) | |
on: | |
- push | |
- pull_request | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Raise aio-max-nr | |
run: | | |
sysctl fs.aio-max-nr | |
sudo sysctl -w fs.aio-max-nr=1000000 | |
- name: Purge distro libuv | |
run: | | |
sudo apt remove libuv1 | |
- name: Install liblz4 | |
run: | | |
sudo apt install liblz4-dev | |
- name: Install latest libuv | |
run: | | |
version="$(curl -L 'https://dist.libuv.org/dist' | grep -o 'v[0-9]\.[0-9]\{1,2\}\.[0-9]\{1,2\}' | sort -V -r | head -n1)" | |
echo "Selected libuv $version" | |
curl -LO "https://dist.libuv.org/dist/$version/libuv-$version.tar.gz" | |
tar xzf "libuv-$version.tar.gz" | |
cd "libuv-$version" | |
sh autogen.sh | |
./configure | |
make -j4 | |
sudo make install | |
sudo ldconfig | |
- uses: actions/checkout@v4 | |
- name: Get latest SQLite | |
run: | | |
relative="$(curl -L 'https://sqlite.org/download.html' | grep '^PRODUCT' | grep 'amalgamation' | cut -d',' -f3)" | |
curl -LO "https://sqlite.org/$relative" | |
name="$(basename "$relative" .zip)" | |
echo "Selected $name" | |
unzip "$name.zip" | |
cd "$name" | |
cp sqlite3.{c,h} "$GITHUB_WORKSPACE/dqlite" | |
- name: Build dqlite | |
run: | | |
autoreconf -i | |
./configure --enable-debug --enable-sanitize --enable-build-raft --enable-build-sqlite | |
make -j4 unit-test integration-test \ | |
raft-core-fuzzy-test \ | |
raft-core-integration-test \ | |
raft-core-unit-test \ | |
raft-uv-integration-test \ | |
raft-uv-unit-test | |
- name: Test | |
run: | | |
export LIBDQLITE_TRACE=1 | |
make check || (cat ./test-suite.log && false) |