summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2023-01-09 13:33:58 +0000
committerJoe Orton <jorton@apache.org>2023-01-09 13:33:58 +0000
commitaefccde4a7b539e78d8c027abefabd357b2c40e8 (patch)
treeab115568bead9d9e097eb6beddf90be7c0c163bd /.github
parent1aa9416a40aa2cecd96ca46b17e60e000656fee0 (diff)
downloadhttpd-aefccde4a7b539e78d8c027abefabd357b2c40e8.tar.gz
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')
-rw-r--r--.github/workflows/linux.yml16
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
+