gnucash stable: Multiple changes pushed
John Ralls
jralls at code.gnucash.org
Sat Mar 16 10:17:02 EDT 2024
Updated via https://github.com/Gnucash/gnucash/commit/2ec3b57c (commit)
via https://github.com/Gnucash/gnucash/commit/5522b9a4 (commit)
from https://github.com/Gnucash/gnucash/commit/cba7da30 (commit)
commit 2ec3b57c2f5d3df0a577cc6162e7daf3a3a77944
Author: John Ralls <jralls at ceridwen.us>
Date: Sat Mar 16 15:10:29 2024 +0100
Temporarily disable ASAN tests.
Something has changed in the Ubuntu runner that causes a build
failure on a commit that passed a few days ago, so disable the
job until we can figure out what's wrong.
diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml
index 71c711debc..4f2692e1f6 100644
--- a/.github/workflows/ci-tests.yml
+++ b/.github/workflows/ci-tests.yml
@@ -38,7 +38,10 @@ jobs:
with:
name: TestLog
path: ${{ github.workspace }}/build/Testing/Temporary/LastTest.log
+
+
ci_tests_ASAN:
+ if: ${{false}} # Temporarily disable, always fails.
runs-on: ubuntu-latest
name: Address Sanitizer CI Tests
continue-on-error: true
commit 5522b9a4280d682a79bc90c0e911e08b2e91eac2
Author: John Ralls <jralls at ceridwen.us>
Date: Fri Mar 15 18:28:09 2024 +0100
Update actions/checkout to @v4
Silencing warning on CI jobs.
diff --git a/.github/workflows/ci-docker.yml b/.github/workflows/ci-docker.yml
index a46d6d4352..df73bc2afc 100644
--- a/.github/workflows/ci-docker.yml
+++ b/.github/workflows/ci-docker.yml
@@ -7,7 +7,7 @@ jobs:
name: Arch Linux (via Docker) CI
steps:
- name: Checkout
- uses: actions/checkout at v3
+ uses: actions/checkout at v4
- name: Test Action
uses: ./util/ci/actions/archlinux-test
- uses: actions/upload-artifact at v3
diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml
index 7ebe090098..71c711debc 100644
--- a/.github/workflows/ci-tests.yml
+++ b/.github/workflows/ci-tests.yml
@@ -9,7 +9,7 @@ jobs:
TZ: America/Los_Angeles
steps:
- name: Checkout
- uses: actions/checkout at v3
+ uses: actions/checkout at v4
- run: sudo apt-get update
- name: Install additional dependencies
run: sudo apt-get install -y gettext cmake libxslt-dev xsltproc ninja-build libboost-all-dev libgtk-3-dev guile-2.2-dev libgwengui-gtk3-dev libaqbanking-dev libofx-dev libdbi-dev libdbd-sqlite3 libwebkit2gtk-4.0-dev googletest
@@ -46,7 +46,7 @@ jobs:
TZ: America/Los_Angeles
steps:
- name: Checkout
- uses: actions/checkout at v3
+ uses: actions/checkout at v4
- run: sudo apt-get update
- name: Install additional dependencies
run: sudo apt-get install -y gettext cmake libxslt-dev xsltproc ninja-build libboost-all-dev libgtk-3-dev guile-2.2-dev libgwengui-gtk3-dev libaqbanking-dev libofx-dev libdbi-dev libdbd-sqlite3 libwebkit2gtk-4.0-dev googletest
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 946523ef9a..44f6073ec9 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -10,7 +10,7 @@ jobs:
TZ: America/Los_Angeles
steps:
- name: Checkout
- uses: actions/checkout at v3
+ uses: actions/checkout at v4
- run: sudo apt-get update
- name: Install additional dependencies
run: sudo apt-get install -y gettext cmake libxslt-dev xsltproc ninja-build libboost-all-dev libgtk-3-dev guile-2.2-dev libgwengui-gtk3-dev libaqbanking-dev libofx-dev libdbi-dev libdbd-sqlite3 libwebkit2gtk-4.0-dev googletest lcov
diff --git a/.github/workflows/mac-tests.yaml b/.github/workflows/mac-tests.yaml
index 527b01d185..b9b19cef1f 100644
--- a/.github/workflows/mac-tests.yaml
+++ b/.github/workflows/mac-tests.yaml
@@ -9,7 +9,7 @@ jobs:
TZ: America/Los_Angeles
steps:
- name: Checkout
- uses: actions/checkout at v3
+ uses: actions/checkout at v4
- run: |
echo "PATH=$PATH:$HOME/gnucash/inst/bin" >> $GITHUB_ENV
echo "PREFIX=$HOME/gnucash/inst" >> $GITHUB_ENV
Summary of changes:
.github/workflows/ci-docker.yml | 2 +-
.github/workflows/ci-tests.yml | 7 +++++--
.github/workflows/coverage.yml | 2 +-
.github/workflows/mac-tests.yaml | 2 +-
4 files changed, 8 insertions(+), 5 deletions(-)
More information about the gnucash-changes
mailing list