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

Git pushed a commit to branch master
in repository ffmpeg.

commit 445cba7f4c9161a0c237d70cb986d7892abbc58c
Author:     Timo Rothenpieler <[email protected]>
AuthorDate: Fri Mar 6 19:49:42 2026 +0100
Commit:     Timo Rothenpieler <[email protected]>
CommitDate: Wed Aug 12 20:05:32 2026 +0200

    forgejo/workflows: add cross fate tests for ppc64/mips64/riscv64
    
    And a full-dependency linux-aarch64 one.
---
 .forgejo/workflows/test.yml | 27 +++++++++++++++++++++++----
 1 file changed, 23 insertions(+), 4 deletions(-)

diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml
index dbcc89b981..cdc0d08785 100644
--- a/.forgejo/workflows/test.yml
+++ b/.forgejo/workflows/test.yml
@@ -75,13 +75,32 @@ jobs:
           echo "New FATE samples were injected from PR attachments. Please add 
them to the official fate-suite before merging."
           exit 1
   run_fate_full:
-    name: Fate (Full, ${{ matrix.target_exec }})
+    name: Fate (${{ matrix.name }})
     strategy:
       fail-fast: false
       matrix:
-        image: ['ghcr.io/btbn/ffmpeg-builds/win64-gpl:latest']
-        target_exec: ['wine']
-    runs-on: linux-amd64
+        include:
+          - name: 'Full, Wine, win64'
+            image: 'ghcr.io/btbn/ffmpeg-builds/win64-gpl:latest'
+            target_exec: 'wine'
+            runner: 'linux-amd64'
+          - name: 'Full, Linux, aarch64'
+            image: 'ghcr.io/btbn/ffmpeg-builds/linuxarm64-gpl:latest-arm'
+            target_exec: ''
+            runner: 'linux-aarch64'
+          - name: 'Qemu, Linux, ppc64'
+            image: 'ghcr.io/btbn/ffmpeg-builds/base-linuxppc64:latest-arm'
+            target_exec: 'qemu-ppc64'
+            runner: 'linux-aarch64-big'
+          - name: 'Qemu, Linux, mips64'
+            image: 'ghcr.io/btbn/ffmpeg-builds/base-linuxmips64:latest-arm'
+            target_exec: 'qemu-mips64'
+            runner: 'linux-aarch64-big'
+          - name: 'Qemu, Linux, riscv64'
+            image: 'ghcr.io/btbn/ffmpeg-builds/base-linuxriscv64:latest-arm'
+            target_exec: 'qemu-riscv64'
+            runner: 'linux-aarch64-big'
+    runs-on: ${{ matrix.runner }}
     container: ${{ matrix.image }}
     steps:
       - name: Checkout

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

Reply via email to