diff contrib/packaging/dockerdeb @ 45966:f6a1540dc572

packaging: add `HG_DOCKER_OWN_USER` to `dockerdeb` like exists in `dockerrpm` I was getting build failures when it was trying to write to the working directory on CentOS 7 without this. It is basically the same as was added to the RPM builder in 4c0d4bbdc395. For some reason, this doesn't work with Xenial, and the only solution I found was to invoke it with UID 1000 on the host side. It doesn't EOL until April 2024, but it also has python 3.5.2, so this build complication is the least of the problems with supporting it after py2 is dropped. Differential Revision: https://phab.mercurial-scm.org/D9394
author Matt Harbison <matt_harbison@yahoo.com>
date Tue, 24 Nov 2020 14:03:19 -0500
parents 824636b08400
children 971424517e17
line wrap: on
line diff
--- a/contrib/packaging/dockerdeb	Sun Nov 29 15:17:14 2020 +0100
+++ b/contrib/packaging/dockerdeb	Tue Nov 24 14:03:19 2020 -0500
@@ -25,7 +25,11 @@
 # container and hope it's writable. Whee.
 dn=$(basename $ROOTDIR)
 
-DBUILDUSER=build
+if [[ -z "${HG_DOCKER_OWN_USER:-}" ]]; then
+    DBUILDUSER=build
+else
+    DBUILDUSER="$(id -u):$(id -g)"
+fi
 
 if [ $(uname) = "Darwin" ] ; then
     $DOCKER run -u $DBUILDUSER --rm -v $PWD/..:/mnt $CONTAINER \