This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 0be989edcb0efd7aa07c254a09491e2bd6652611 Author: Timo Rothenpieler <[email protected]> AuthorDate: Fri Dec 12 00:30:39 2025 +0100 Commit: Timo Rothenpieler <[email protected]> CommitDate: Wed Dec 17 13:28:21 2025 +0000 forgejo/workflows: cat .err files after running fate --- .forgejo/workflows/test.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index d40263d1ea..c1278596b2 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -53,7 +53,10 @@ jobs: path: fate-suite key: fate-suite-${{ steps.fate.outputs.hash }} - name: Run Fate - run: LD_LIBRARY_PATH="$(printf "%s:" "$PWD"/lib*)$PWD" make fate fate-build SAMPLES="$PWD/fate-suite" -j$(nproc) + run: | + LD_LIBRARY_PATH="$(printf "%s:" "$PWD"/lib*)$PWD" make fate fate-build SAMPLES="$PWD/fate-suite" -j$(nproc) || FATERES=$? + find . -name "*.err" -exec printf '::group::%s\n' {} \; -exec cat {} \; -exec printf '::endgroup::\n' \; + exit ${FATERES:-0} run_fate_full: strategy: fail-fast: false @@ -97,4 +100,11 @@ jobs: path: fate-suite key: fate-suite-${{ steps.fate.outputs.hash }} - name: Run Fate - run: LD_LIBRARY_PATH="$(printf "%s:" "$PWD"/lib*)$PWD" make fate fate-build SAMPLES="$PWD/fate-suite" -j$(nproc) + run: | + if [[ "${{ matrix.target_exec }}" == "wine" ]]; then + export WINEDEBUG=-all + export FREI0R_PATH="$(winepath -w "$FREI0R_PATH")" + fi + LD_LIBRARY_PATH="$(printf "%s:" "$PWD"/lib*)$PWD" make fate fate-build SAMPLES="$PWD/fate-suite" -j$(nproc) || FATERES=$? + find . -name "*.err" -exec printf '::group::%s\n' {} \; -exec cat {} \; -exec printf '::endgroup::\n' \; + exit ${FATERES:-0} _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
