From aefccde4a7b539e78d8c027abefabd357b2c40e8 Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Mon, 9 Jan 2023 13:33:58 +0000 Subject: [PATCH] Limit triggering on non-code changes, try to capture error_log as an artifact on failure. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1906501 13f79535-47bb-0310-9956-ffa450edef68 --- .github/workflows/linux.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 074304c019e..ad26bc945c5 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -3,8 +3,18 @@ name: Linux on: push: branches: [ "*" ] + paths-ignore: + - 'docs/**' + - STATUS + - CHANGES + - changes-entries/* pull_request: branches: [ "trunk" ] + paths-ignore: + - 'docs/**' + - STATUS + - CHANGES + - changes-entries/* env: MARGS: "-j2" @@ -54,3 +64,9 @@ jobs: run: ./test/travis_before_linux.sh - name: Build and test run: ./test/travis_run_linux.sh + - uses: actions/upload-artifact@v3 + if: failure() + with: + name: error_log + path: test/perl-framework/t/logs/error_log + -- 2.47.2