aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'builders/jiji/binhost-update')
-rwxr-xr-xbuilders/jiji/binhost-update6
1 files changed, 3 insertions, 3 deletions
diff --git a/builders/jiji/binhost-update b/builders/jiji/binhost-update
index 0becbb9..2cda38b 100755
--- a/builders/jiji/binhost-update
+++ b/builders/jiji/binhost-update
@@ -11,11 +11,11 @@ EMAIL_TO=gentoo-binhost-autobuilds@lists.gentoo.org
NSPAWN_NAMES="binhost-arm64-kde binhost-arm64-gnome binhost-arm64-server binhost-arm64-kde-23 binhost-arm64-gnome-23 binhost-arm64-server-23"
-MAX_HARMLESS=200
-
UPLOAD_USER=arm64
UPLOAD_KEY=/root/.ssh/id_ed25519
+TMPFS_SIZE=64
+
send_email() {
local subject="[binhost ${BINHOST_NAME}] $1"
@@ -100,7 +100,7 @@ for n in ${NSPAWN_NAMES} ; do
cd /var/lib/machines/${n}/etc/binhost &>> ${TMPFILE}
git pull -q &>> ${TMPFILE}
cd /root &>> ${TMPFILE}
- systemd-nspawn --bind /var/cache/distfiles --bind-ro /var/db/repos/gentoo --tmpfs=/var/tmp:mode=1777,size=64g -M ${n} /root/bin/run-update &>> ${TMPFILE}
+ systemd-nspawn --bind /var/cache/distfiles --bind-ro /var/db/repos/gentoo --tmpfs=/var/tmp:mode=1777,size=${TMPFS_SIZE}g -M ${n} /root/bin/run-update &>> ${TMPFILE}
let "anyfail+=$?"
done