Skip to content

Commit

Permalink
.github: run make distcheck as part of the CI
Browse files Browse the repository at this point in the history
Closes: containers#241

Signed-off-by: Giuseppe Scrivano <[email protected]>
  • Loading branch information
giuseppe committed Jan 29, 2024
1 parent f6bbf54 commit d6e55bf
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,14 @@ jobs:
run: |
sudo docker build -t clang-format hacking/clang-format
sudo docker run --rm -w /src -v ${PWD}:/src clang-format
distcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies
run: sudo ./hacking/installdeps.sh
- name: Configure
run: ./autogen.sh && ./configure CFLAGS='-Wall -Werror'
- name: Run make distcheck
run: make -j$(nproc) distcheck

0 comments on commit d6e55bf

Please sign in to comment.