]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Limit triggering on non-code changes, try to capture error_log as
authorJoe Orton <jorton@apache.org>
Mon, 9 Jan 2023 13:33:58 +0000 (13:33 +0000)
committerJoe Orton <jorton@apache.org>
Mon, 9 Jan 2023 13:33:58 +0000 (13:33 +0000)
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

index 074304c019ee7609f6ec432900490282dbb05fda..ad26bc945c537692492590a7bd3c857f14059f6f 100644 (file)
@@ -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
+