Merge pull request #11353 from akallabeth/ci-repair

[ci,alt-arch] run mk-build-deps in run step
This commit is contained in:
akallabeth 2025-03-14 12:47:45 +01:00 committed by GitHub
commit 618139c7a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,15 +36,17 @@ jobs:
CTEST_OUTPUT_ON_FAILURE: 1
WLOG_LEVEL: 'trace'
install: |
echo "whoami: $(whoami)"
echo "working directory: $(pwd)"
find /etc/apt -name "*.list" -exec sed -i '/deb-src/s/^# //' {} \;
find /etc/apt -name "*.sources" -exec sed -i '/Types: deb/Types: deb deb-src//' {} \;
apt-get update -q -y
apt-get install -q -y devscripts clang ninja-build ccache equivs
echo "working directory: $(pwd)"
find /home -name control -exec mk-build-deps -i -t "apt-get -o Debug::pkgProblemResolver=yes --no-install-recommends -y" {} \;
run: |
echo "whoami: $(whoami)"
echo "working directory: $(pwd)"
find . -name control -exec mk-build-deps -i -t "apt-get -o Debug::pkgProblemResolver=yes --no-install-recommends -y" {} \;
cmake -GNinja \
-C ci/cmake-preloads/config-linux-alt-arch.txt \
-B ci-build \