Skip to content

Commit

Permalink
.github/workflows/ubuntu-distcheck.yml: adding more steps, including …
Browse files Browse the repository at this point in the history
…the make check tests
  • Loading branch information
andrewdavidsmith committed Aug 9, 2024
1 parent cac5bcc commit be5dbd5
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/ubuntu-distcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@ on:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Update packages
Expand All @@ -23,6 +21,12 @@ jobs:
- name: Generate configure script
run: ./autogen.sh
- name: configure
run: ./configure --enable-hts
- name: make distcheck
run: ./configure
- name: Build falco
run: make
- name: Run falco tests
run: make check
- name: Cleanup after the build
run: make distclean
- name: Check the distribution
run: make distcheck

0 comments on commit be5dbd5

Please sign in to comment.