Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/build-kernel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,6 @@ jobs:
# pkg-builder:noble is Ubuntu 24.04 which uses DEB822 format.
sed -i "s/^Types: deb$/Types: deb deb-src/" /etc/apt/sources.list.d/ubuntu.sources
apt-get update -qq
apt-get build-dep -y linux

cd kernel-src/
echo "debian/debian.env: $(cat debian/debian.env 2>/dev/null || echo NOT FOUND)"
Expand Down Expand Up @@ -381,6 +380,10 @@ jobs:
echo "Safety net: created debian/changelog → debian.master/changelog"
fi

# Resolve against the local debian/control just generated by "clean".
echo "=== Installing build dependencies from debian/control ==="
apt-get build-dep -y ./

echo "=== Starting: fakeroot debian/rules ${TARGET} (jobs=${JOBS}) ==="
export DEB_BUILD_OPTIONS="parallel=${JOBS} nocheck"
# do_skip_checks=true skips the config policy check that requires
Expand Down
Loading