From 7443d5766055a890cb74343b1fd3600051af71e7 Mon Sep 17 00:00:00 2001 From: Mariano Abad Date: Sun, 28 Jun 2026 02:15:13 -0300 Subject: [PATCH] ci: install patchelf in the sciter run-on-arch build The run-on-arch base image no longer ships patchelf, and build.py needs it to set the rpath when packaging the .deb. patchelf was already added to the flutter run-on-arch install block but missed on the sciter one, so the nightly sciter builds (x86_64 + armv7) failed with "patchelf: not found". Add it there too. --- .github/workflows/flutter-build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/flutter-build.yml b/.github/workflows/flutter-build.yml index 2209ec290d2..0f252e2d98e 100644 --- a/.github/workflows/flutter-build.yml +++ b/.github/workflows/flutter-build.yml @@ -1842,7 +1842,8 @@ jobs: wget \ xz-utils \ zip \ - libssl-dev + libssl-dev \ + patchelf # arm-linux needs CMake and vcokg built from source as there # are no prebuilts available from Kitware and Microsoft if [ "${{ matrix.job.vcpkg-triplet }}" = "arm-linux" ]; then