Remove need for mk-build-deps

This commit is contained in:
Mike Roberts 2020-10-26 22:35:23 +00:00
parent 515c38e5e0
commit 45a92886fe
No known key found for this signature in database
GPG key ID: B68562622B45F745

11
main.js
View file

@ -120,7 +120,12 @@ async function main() {
await exec.exec("docker", [
"exec",
container,
"apt-get", "install", "--no-install-recommends", "-y", "dpkg-dev", "debhelper", "devscripts", "equivs", "libpython3.7-minimal:" + targetArchitecture
"apt-get", "install", "--no-install-recommends", "-y",
// General packaging stuff
"dpkg-dev",
"debhelper",
// Used by pybuild
"libpython3.7-minimal:" + targetArchitecture
])
core.endGroup()
@ -128,7 +133,7 @@ async function main() {
await exec.exec("docker", [
"exec",
container,
"mk-build-deps", "-ir", "-t", "apt-get -o Debug::pkgProblemResolver=yes -y --no-install-recommends"
"apt-get", "build-dep", "-y", sourceDirectory
])
core.endGroup()
@ -136,7 +141,7 @@ async function main() {
await exec.exec("docker", [
"exec",
container,
"dpkg-buildpackage", "--no-sign", "-d", "-a" + targetArchitecture
"dpkg-buildpackage", "--no-sign", "-a" + targetArchitecture
])
core.endGroup()