You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rm...@apache.org on 2022/01/04 00:32:25 UTC

[logging-log4cxx] branch master updated: Save abi compliance check (#98)

This is an automated email from the ASF dual-hosted git repository.

rmiddleton pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git


The following commit(s) were added to refs/heads/master by this push:
     new d354ea5  Save abi compliance check (#98)
d354ea5 is described below

commit d354ea560a1dfca9ee546207a6cfcc56383f717a
Author: Robert Middleton <rm...@users.noreply.github.com>
AuthorDate: Mon Jan 3 19:32:22 2022 -0500

    Save abi compliance check (#98)
    
    Save the ABI compliance check report.
---
 .github/workflows/abi-compatibility.yml | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/abi-compatibility.yml b/.github/workflows/abi-compatibility.yml
index 07b92e6..6a9a1b7 100644
--- a/.github/workflows/abi-compatibility.yml
+++ b/.github/workflows/abi-compatibility.yml
@@ -51,7 +51,13 @@ jobs:
         cmake -DCMAKE_CXX_COMPILER=g++ -DCMAKE_C_COMPILER=gcc -DLOG4CXX_ABI_CHECK=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-Og" -DBUILD_TESTING=off ..
         cmake --build .
 
+    - name: 'copy compat report'
+      if: failure()
+      run: |
+        cp $(find . -name compat_report.html) .
+
     - uses: actions/upload-artifact@v2
+      if: failure()
       with:
-        name: abi-compatibility-report
-        path: main/build/src/main/cpp/compat_reports/log4cxx/11_to_11/compat_report.html
+        name: compat_report.html
+        path: compat_report.html