Ignore build dependencies when installing the package
This commit is contained in:
parent
2c5d9c93b5
commit
b49f96f8a8
15
main.js
15
main.js
|
@ -121,9 +121,11 @@ async function main() {
|
||||||
"exec",
|
"exec",
|
||||||
container,
|
container,
|
||||||
"apt-get", "install", "--no-install-recommends", "-y",
|
"apt-get", "install", "--no-install-recommends", "-y",
|
||||||
|
|
||||||
// General packaging stuff
|
// General packaging stuff
|
||||||
"dpkg-dev",
|
"dpkg-dev",
|
||||||
"debhelper",
|
"debhelper",
|
||||||
|
|
||||||
// Used by pybuild
|
// Used by pybuild
|
||||||
"libpython3.7-minimal:" + targetArchitecture
|
"libpython3.7-minimal:" + targetArchitecture
|
||||||
])
|
])
|
||||||
|
@ -141,7 +143,18 @@ async function main() {
|
||||||
await exec.exec("docker", [
|
await exec.exec("docker", [
|
||||||
"exec",
|
"exec",
|
||||||
container,
|
container,
|
||||||
"dpkg-buildpackage", "--no-sign", "-a" + targetArchitecture
|
"dpkg-buildpackage",
|
||||||
|
|
||||||
|
// Don't sign for now
|
||||||
|
"--no-sign",
|
||||||
|
|
||||||
|
// Ignore build dependencies - we have already installed them
|
||||||
|
//
|
||||||
|
// Seems to not recognise if python3-all and python3-gpiozero are installed
|
||||||
|
// and may affect other packages in the same way - but THEY ARE THERE
|
||||||
|
"-d",
|
||||||
|
|
||||||
|
"-a" + targetArchitecture
|
||||||
])
|
])
|
||||||
core.endGroup()
|
core.endGroup()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue