Skip to content

year++

year++ #273

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
cc:
- gcc
- clang
make_target:
- check
- distcheck
configure_flags:
- ''
include:
- cc: gcc
make_target: lcov
configure_flags: --enable-code-coverage
steps:
- uses: actions/checkout@v3
- name: Install packages
run: |
sudo apt-get update -q
sudo apt-get install -qq \
automake autotools-dev lcov libedit-dev libeditline-dev libev-dev \
libncurses-dev libpcre3-dev libssl-dev libtool python-docutils \
python3-sphinx
- name: Install Varnish Cache
run: |
wget --no-check-certificate https://varnish-cache.org/_downloads/varnish-6.0.9.tgz
tar zxvf varnish-*.tgz
pushd varnish-*/
./autogen.sh
CC='${{ matrix.cc }}' ./configure
make -sj32
sudo make PREFIX='/usr/local' install
sudo ldconfig
popd
- name: Install hiredis
run: |
wget --no-check-certificate https://github.com/redis/hiredis/archive/v1.2.0.zip -O hiredis-1.2.0.zip
unzip hiredis-*.zip
pushd hiredis-*/
make USE_SSL=1
sudo make USE_SSL=1 PREFIX='/usr/local' install
sudo ldconfig
popd
- name: Install Redis
run: |
wget http://download.redis.io/releases/redis-7.0.9.tar.gz
tar zxvf redis-*.tar.gz
pushd redis-*/
make BUILD_TLS=yes
sudo make BUILD_TLS=yes PREFIX='/usr/local' install
sudo ldconfig
popd
- name: Build & test VMOD
run: |
./autogen.sh
CC='${{ matrix.cc }}' ./configure --prefix=/usr ${{ matrix.configure_flags }}
make -j4
make ${{ matrix.make_target }} -j1
- name: Push code coverage
if: ${{ matrix.make_target == 'lcov' }}
run: |
cp libvmod-redis-*-coverage.info codecov.info
bash <(curl -s https://codecov.io/bash) -X gcov -X coveragepy
- name: Show test report
if: ${{ failure() }}
run: |
cat src/test-suite.log || exit 0