Skip to content

Commit

Permalink
.github/workflows/testing.yml: run verbose make and enable IRC bot on…
Browse files Browse the repository at this point in the history
… errors

Signed-off-by: Tim Janik <[email protected]>
  • Loading branch information
tim-janik committed Dec 1, 2024
1 parent e482317 commit 6d8f65e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- { uses: actions/[email protected], with: { fetch-depth: 0, submodules: recursive, github-server-url: 'https://github.com' } }
- run: git fetch -f --tags # Fix actions/checkout#290
- run: git describe --always --long
- run: make check
- run: git fetch -f --tags && git describe --long # Fix actions/checkout#290
- run: |
make check V=1
Ping-IRC:
if: always()
needs: [MakeCheck]
runs-on: ubuntu-latest
steps:
- { uses: actions/[email protected], with: { fetch-depth: 0 } } # Fix actions/checkout#290
- run: git fetch -f --tags && git describe --always --long
- { uses: actions/[email protected], with: { fetch-depth: 0, github-server-url: 'https://github.com' } }
- run: git fetch -f --tags && git describe --long # Fix actions/checkout#290
- name: Check Jobs
run: |
echo '${{ needs.MakeCheck.result }}'
Expand Down

0 comments on commit 6d8f65e

Please sign in to comment.