Add a buildbot_multibuild dir for building windows executable

This commit is contained in:
Lee Miller 2023-09-18 16:27:07 +03:00
parent 190ce099f4
commit 7057bc0f87
Signed by untrusted user: lee.miller
GPG Key ID: 4F97A5EA88F4AB63
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,14 @@
FROM ubuntu:bionic
ENV DEBIAN_FRONTEND=noninteractive
RUN dpkg --add-architecture i386
RUN apt-get update
RUN apt-get install -yq --no-install-suggests --no-install-recommends \
software-properties-common build-essential libcap-dev libffi-dev \
libssl-dev python-all-dev python-setuptools xvfb \
mingw-w64 wine-stable winetricks wine32 wine64
ADD . .

6
.buildbot/winebuild/build.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
xvfb-run -a buildscripts/winbuild.sh
mkdir -p ../out
mv packages/pyinstaller/dist/*.exe ../out