Skip to content

Merge pull request #4180 from octo/open-telemetry #18

Merge pull request #4180 from octo/open-telemetry

Merge pull request #4180 from octo/open-telemetry #18

Workflow file for this run

name: Check the Distribution
on:
push:
branches: [ collectd-6.0 ]
pull_request:
branches: [ collectd-6.0 ]
permissions:
contents: read
defaults:
run:
shell: bash
jobs:
make_distcheck:
runs-on: ubuntu-latest
container: collectd/ci:debian12
env:
# this env var picked up by valgrind during make check phase
VALGRIND_OPTS: "--errors-for-leak-kinds=definite"
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install bzip2
run: apt install -y bzip2
- name: Print available packages
run: pkg-config --list-all | sort
- name: Generate configure script
run: ./build.sh
- name: Run configure script
run: ./configure
- name: Run make distcheck
run: make $MAKEFLAG distcheck