From 1c1c771e13007d513f8b55cd634c38d554205f18 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Fri, 14 Mar 2025 12:35:15 +0100 Subject: [PATCH] [ci,alt-arch] work around wrong workdir install runs with a workdir of /. Search for the control file in /home and run mk-build-deps on that --- .github/workflows/alt-architectures.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/alt-architectures.yml b/.github/workflows/alt-architectures.yml index 5ffffd451..8f18c5369 100644 --- a/.github/workflows/alt-architectures.yml +++ b/.github/workflows/alt-architectures.yml @@ -41,10 +41,10 @@ jobs: apt-get update -q -y apt-get install -q -y devscripts clang ninja-build ccache equivs echo "working directory: $(pwd)" - ls -lah - mk-build-deps -i -t "apt-get -o Debug::pkgProblemResolver=yes --no-install-recommends -y" packaging/deb/freerdp-nightly/control + find /home -name control -exec mk-build-deps -i -t "apt-get -o Debug::pkgProblemResolver=yes --no-install-recommends -y" {} \; run: | + echo "working directory: $(pwd)" cmake -GNinja \ -C ci/cmake-preloads/config-linux-alt-arch.txt \ -B ci-build \