diff options
author | Joe Orton <jorton@apache.org> | 2023-01-09 14:33:58 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2023-01-09 14:33:58 +0100 |
commit | aefccde4a7b539e78d8c027abefabd357b2c40e8 (patch) | |
tree | ab115568bead9d9e097eb6beddf90be7c0c163bd /.github/workflows/linux.yml | |
parent | bundle in r1904518 (diff) | |
download | apache2-aefccde4a7b539e78d8c027abefabd357b2c40e8.tar.xz apache2-aefccde4a7b539e78d8c027abefabd357b2c40e8.zip |
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
Diffstat (limited to '.github/workflows/linux.yml')
-rw-r--r-- | .github/workflows/linux.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 074304c019..ad26bc945c 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 + |