From 6d8f65e07ac4a74e485afcc136552e1940d267e1 Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Sun, 1 Dec 2024 03:07:35 +0100 Subject: [PATCH] .github/workflows/testing.yml: run verbose make and enable IRC bot on errors Signed-off-by: Tim Janik --- .github/workflows/testing.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 6f8f60f..0b413ff 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -15,16 +15,17 @@ jobs: runs-on: ubuntu-latest steps: - { uses: actions/checkout@v4.1.1, 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/checkout@v4.1.1, with: { fetch-depth: 0 } } # Fix actions/checkout#290 - - run: git fetch -f --tags && git describe --always --long + - { uses: actions/checkout@v4.1.1, 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 }}'