Another workaround for ancient Meson #220
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: Valgrind memcheck | |
on: | |
pull_request: | |
push: | |
# don't run on packaging and dependabot branches | |
branches-ignore: | |
- 'for-debian' | |
- 'debian/**' | |
- 'pristine-tar' | |
- 'dependabot/**' | |
paths: | |
- '**' | |
- '!doc/**' | |
- '!**.md' | |
permissions: | |
contents: read | |
jobs: | |
debian-bookworm: | |
runs-on: ubuntu-latest | |
container: debian:bookworm | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install dependencies | |
run: | | |
export DEBIAN_FRONTEND=noninteractive | |
apt-get update | |
apt-get -y install meson make python3-yaml apache2-bin apache2-dev curl gnutls-bin libapr1-dev libgnutls28-dev openssl pkgconf procps iproute2 softhsm2 valgrind | |
- name: build mod_gnutls and run tests with Valgrind | |
uses: ./.github/build-action/ | |
with: | |
configure-options: -Dvalgrind-test=true -Dpdf-doc=false | |
artifact-prefix: valgrind |