forked from marfrit/marfrit-packages
libva: fix runner label — actrunner-debian-aarch64-bohr
The previous commit used `debian-aarch64-bohr` for the runs-on label, but the actual registered label is the full `actrunner-debian-aarch64-bohr` (per @marfrit on the PR thread). Without the `actrunner-` prefix the job would have sat in the queue forever waiting for a runner that doesn't exist. Renames the label in three places: - .gitea/workflows/build.yml — the runs-on directive itself. - debian/.../build-deb.sh — the comment referencing the expected runner, and the error message printed when the ABI sanity check trips (so a future debug session lands on the right runner name). - debian/.../changelog — the -2 entry's prose description. Pure label rename; no behavioral or build-graph change. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
+2
-2
@@ -44,7 +44,7 @@ meson compile -C build
|
||||
# ABI sanity check: the produced .so MUST export __vaDriverInit_1_<MINOR>
|
||||
# matching the install target's libva runtime. Build is expected to run on
|
||||
# a Debian trixie runner where <va/va.h>'s VA_MINOR is 22 — see
|
||||
# .gitea/workflows/build.yml (runs-on: debian-aarch64-bohr). If a future
|
||||
# .gitea/workflows/build.yml (runs-on: actrunner-debian-aarch64-bohr). If a future
|
||||
# runner change lands the build on a host with a different libva-dev
|
||||
# version, the produced symbol won't bind on the install target and ffmpeg/
|
||||
# vainfo/firefox-vaapi will all fail with "has no function
|
||||
@@ -55,7 +55,7 @@ SO=$(find build -name 'v4l2_request_drv_video.so' | head -1)
|
||||
if ! nm -D --defined-only "$SO" | grep -q '__vaDriverInit_1_22'; then
|
||||
echo "FATAL: built driver does not export __vaDriverInit_1_22."
|
||||
echo " Build host's <va/va.h> VA_MINOR_VERSION is likely != 22."
|
||||
echo " Expected runner: debian-aarch64-bohr (trixie, libva 2.22)."
|
||||
echo " Expected runner: actrunner-debian-aarch64-bohr (trixie, libva 2.22)."
|
||||
echo " Symbol exports found:"
|
||||
nm -D --defined-only "$SO" | grep -i vadriverinit || echo " (none)"
|
||||
exit 1
|
||||
|
||||
Reference in New Issue
Block a user