This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit 0d7b8d891306495297bf232f3fbdb2925d28ae13
Author:     Timo Rothenpieler <[email protected]>
AuthorDate: Fri Dec 12 00:49:33 2025 +0100
Commit:     Timo Rothenpieler <[email protected]>
CommitDate: Wed Dec 17 13:28:21 2025 +0000

    forgejo/workflows: fix error handling of configure result
---
 .forgejo/workflows/test.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml
index c1278596b2..bce6063521 100644
--- a/.forgejo/workflows/test.yml
+++ b/.forgejo/workflows/test.yml
@@ -28,9 +28,9 @@ jobs:
           ./configure --enable-gpl --enable-nonfree --enable-memory-poisoning 
--assert-level=2 \
               $([ "${{ matrix.bits }}" != "32" ] || echo --arch=x86_32 
--extra-cflags=-m32 --extra-cxxflags=-m32 --extra-ldflags=-m32) \
               $([ "${{ matrix.shared }}" != "shared" ] || echo --enable-shared 
--disable-static) \
-              || CFGRES=$? && CFGRES=$?
+              || CFGRES=$?
           cat ffbuild/config.log
-          exit $CFGRES
+          exit ${CFGRES:-0}
       - name: Build
         run: make -j$(nproc)
       - name: Restore Cached Fate-Suite
@@ -75,9 +75,9 @@ jobs:
               --extra-cflags="$FF_CFLAGS" --extra-cxxflags="$FF_CXXFLAGS" \
               --extra-libs="$FF_LIBS" --extra-ldflags="$FF_LDFLAGS" 
--extra-ldexeflags="$FF_LDEXEFLAGS" \
               --enable-memory-poisoning --assert-level=2 --target-exec="${{ 
matrix.target_exec }}" \
-              || CFGRES=$? && CFGRES=$?
+              || CFGRES=$?
           cat ffbuild/config.log
-          exit $CFGRES
+          exit ${CFGRES:-0}
       - name: Build
         run: make -j$(nproc)
       - name: Restore Cached Fate-Suite

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to