Add a buildbot_multibuild dir for building windows executable
This commit is contained in:
parent
190ce099f4
commit
7057bc0f87
14
.buildbot/winebuild/Dockerfile
Normal file
14
.buildbot/winebuild/Dockerfile
Normal 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
6
.buildbot/winebuild/build.sh
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
xvfb-run -a buildscripts/winbuild.sh
|
||||||
|
|
||||||
|
mkdir -p ../out
|
||||||
|
mv packages/pyinstaller/dist/*.exe ../out
|
Reference in New Issue
Block a user