From b6b9ff09b8c5ba8e98ec902796f19bb4b22ec654 Mon Sep 17 00:00:00 2001 From: Alessio Date: Wed, 13 Mar 2024 21:36:06 -0700 Subject: [PATCH] Add winbind package to innosetup docker build --- .woodpecker/docker/innosetup.dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.woodpecker/docker/innosetup.dockerfile b/.woodpecker/docker/innosetup.dockerfile index 28adf30..757be79 100644 --- a/.woodpecker/docker/innosetup.dockerfile +++ b/.woodpecker/docker/innosetup.dockerfile @@ -4,12 +4,13 @@ from ubuntu:jammy shell ["/bin/bash", "-c"] run dpkg --add-architecture i386 run apt update -run apt install -y curl ssh wine wine32 xvfb +run apt install -y curl ssh wine wine32 xvfb winbind run curl -SL "https://files.jrsoftware.org/is/6/innosetup-6.2.2.exe" -o is.exe env DISPLAY ":99" env WINEDEBUG "-all,err+all" -run xvfb-run wine is.exe /SP- /VERYSILENT /ALLUSERS /SUPPRESSMSGBOXES /DOWNLOADISCRYPT=1 +# Not sure why but it just hangs forever without `... || exit 1` +run xvfb-run wine is.exe /SP- /VERYSILENT /ALLUSERS /SUPPRESSMSGBOXES /DOWNLOADISCRYPT=1 || exit 1 copy iscc.sh /usr/bin/iscc.sh # For SSH upload