This is an automated email from the ASF dual-hosted git repository.
swebb2066 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 5f10a19f Fix packaged release_files.zip archive (#720)
5f10a19f is described below
commit 5f10a19f444cc84d49e94f8d195edc671cba6287
Author: Stephen Webb <[email protected]>
AuthorDate: Wed Jul 15 11:14:29 2026 +1000
Fix packaged release_files.zip archive (#720)
---
.github/workflows/log4cxx-macos.yml | 2 +-
.github/workflows/package_code.yml | 22 +++++++++++-----------
2 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/.github/workflows/log4cxx-macos.yml
b/.github/workflows/log4cxx-macos.yml
index 21366f0c..b7ad1812 100644
--- a/.github/workflows/log4cxx-macos.yml
+++ b/.github/workflows/log4cxx-macos.yml
@@ -55,7 +55,7 @@ jobs:
exitevents: ON
- name: osx-g++
os: macos-latest
- cxx: g++-14
+ cxx: g++-15
odbc: OFF
qt: OFF
multiprocess: OFF
diff --git a/.github/workflows/package_code.yml
b/.github/workflows/package_code.yml
index c90930f7..73718e56 100644
--- a/.github/workflows/package_code.yml
+++ b/.github/workflows/package_code.yml
@@ -70,6 +70,13 @@ jobs:
sha256sum "apache-log4cxx-$VERSION.zip" >
"apache-log4cxx-$VERSION.zip.sha256"
gpg --armor --detach-sign --yes --pinentry-mode error
"apache-log4cxx-$VERSION.zip"
+ - uses: actions/upload-artifact@v4
+ if: always()
+ with:
+ name: 'release_files'
+ path: |
+ apache-log4cxx-*
+
- name: 'Configure Dependencies'
run: |
sudo apt-get update
@@ -79,16 +86,9 @@ jobs:
run: |
VERSION=`ls apache-log4cxx-*.tar.gz | sed -Ee
's/.*apache-log4cxx-([0-9]*)\.([0-9]*)\.([0-9]*).*/\1.\2.\3/'`
echo "Extracting files from apache-log4cxx-$VERSION.tar.gz..."
- tar xf apache-log4cxx-$VERSION.tar.gz || exit
+ tar xf apache-log4cxx-$VERSION.tar.gz
"--transform=s,apache-log4cxx-$VERSION,test-files," || exit
- cmake -S apache-log4cxx-$VERSION -B test-archive || exit
- cmake --build test-archive || exit
- cd test-archive
+ cmake -S test-files -B test-build || exit
+ cmake --build test-build || exit
+ cd test-build
ctest
-
- - uses: actions/upload-artifact@v4
- if: always()
- with:
- name: 'release_files'
- path: |
- apache-log4cxx-*