Skip to content

Commit

Permalink
test more
Browse files Browse the repository at this point in the history
  • Loading branch information
gquintard committed Apr 3, 2024
1 parent c5526ad commit eb395aa
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 4 deletions.
41 changes: 38 additions & 3 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,52 @@
name: Quick test
on: [push]
jobs:
build:
build_against_packages:
strategy:
matrix:
version: ["73", "74"]
version: ["60lts", "73", "74", "75"]
runs-on: ubuntu-latest
steps:
steps :
- uses: actions/checkout@v4
- run: |
set -ex
cat << -EOF > /tmp/pref
Package: *
Pin: origin "packagecloud.io"
Pin-Priority: 999
EOF
sudo mv /tmp/pref /etc/apt/preferences.d/varnish
curl -s https://packagecloud.io/install/repositories/varnishcache/varnish${{ matrix.version }}/script.deb.sh | sudo bash
sudo apt-get install -y cmake gcc jq libcjson-dev python3-docutils varnish varnish-dev
cmake -B build
cmake --build build/
ctest --test-dir build/ --output-on-failure
build_against_master:
runs-on: ubuntu-latest
steps :
- uses: actions/checkout@v4
- run: |
sudo apt-get install -y \
automake \
cmake \
gcc \
libjemalloc-dev \
jq \
libcjson-dev \
libedit-dev \
make \
libpcre2-dev \
python3-docutils \
python3-sphinx
- run: |
git clone https://github.com/varnishcache/varnish-cache.git
cd varnish-cache
sed -i 's/^AC_INIT.*/AC_INIT([Varnish], ['$(date +%Y%m%d)'], [[email protected]])/' configure.ac
./autogen.des
sudo make install -j32
- run: |
set -ex
cmake -B build
cmake --build build/
ctest --test-dir build/ --output-on-failure
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project(varnishlog-json C)

# just use pkg-config to find the varnish libs
find_package(PkgConfig)
pkg_check_modules(VARNISH REQUIRED IMPORTED_TARGET varnishapi>6.0)
pkg_check_modules(VARNISH REQUIRED IMPORTED_TARGET varnishapi>=6.0)
pkg_check_modules(CJSON REQUIRED IMPORTED_TARGET libcjson)

add_compile_options(-Wall -Wextra -Wpedantic)
Expand Down

0 comments on commit eb395aa

Please sign in to comment.