13 Commits

Author SHA1 Message Date
Fizban
eb09f72a9c Update readme for 0.1.0 release 2020-06-03 00:50:15 +10:00
Fizban
e5d7a99003 Remove final if 2020-06-03 00:39:36 +10:00
Fizban
fbbcff164c more ecs 2020-06-03 00:33:43 +10:00
Fizban
f59ea26c6d echos 2020-06-03 00:27:07 +10:00
Fizban
e345907744 add echos 2020-06-03 00:26:52 +10:00
Fizban
4fdf899fb4 Rem ls 2020-06-03 00:23:04 +10:00
Fizban
bc0cbb72c2 Rem slash 2020-06-03 00:22:44 +10:00
Fizban
99c9398146 addls 2020-06-03 00:19:43 +10:00
Fizban
5a6a0b3105 Add ls 2020-06-03 00:19:25 +10:00
Fizban
74860fa3f9 try mounted? 2020-06-03 00:15:22 +10:00
Fizban
f07c773adf Try set pwd 2020-06-03 00:07:18 +10:00
Fizban
decd8304a3 Try from image 2020-06-03 00:02:20 +10:00
Fizban
033b51a203 Change to just call docker 2020-06-02 23:50:28 +10:00
4 changed files with 64 additions and 93 deletions

View File

@@ -1,82 +1,4 @@
FROM ubuntu:16.04 FROM cdrx/pyinstaller-windows
ENV DEBIAN_FRONTEND noninteractive
ARG WINE_VERSION=winehq-staging
ARG PYTHON_VERSION=3.7.5
ARG PYINSTALLER_VERSION=3.6
# we need wine for this all to work, so we'll use the PPA
RUN set -x \
&& dpkg --add-architecture i386 \
&& apt-get update -qy \
&& apt-get install --no-install-recommends -qfy apt-transport-https software-properties-common wget \
&& wget -nv https://dl.winehq.org/wine-builds/winehq.key \
&& apt-key add winehq.key \
&& add-apt-repository 'https://dl.winehq.org/wine-builds/ubuntu/' \
&& apt-get update -qy \
&& apt-get install --no-install-recommends -qfy $WINE_VERSION winbind cabextract \
&& apt-get clean \
&& wget -nv https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks \
&& chmod +x winetricks \
&& mv winetricks /usr/local/bin
# wine settings
ENV WINEARCH win64
ENV WINEDEBUG fixme-all
ENV WINEPREFIX /wine
# PYPI repository location
ENV PYPI_URL=https://pypi.python.org/
# PYPI index location
ENV PYPI_INDEX_URL=https://pypi.python.org/simple
# install python in wine, using the msi packages to install, extracting
# the files directly, since installing isn't running correctly.
RUN set -x \
&& winetricks win7 \
&& for msifile in `echo core dev exe lib path pip tcltk tools`; do \
wget -nv "https://www.python.org/ftp/python/$PYTHON_VERSION/amd64/${msifile}.msi"; \
wine msiexec /i "${msifile}.msi" /qb TARGETDIR=C:/Python37; \
rm ${msifile}.msi; \
done \
&& cd /wine/drive_c/Python37 \
&& echo 'wine '\''C:\Python37\python.exe'\'' "$@"' > /usr/bin/python \
&& echo 'wine '\''C:\Python37\Scripts\easy_install.exe'\'' "$@"' > /usr/bin/easy_install \
&& echo 'wine '\''C:\Python37\Scripts\pip.exe'\'' "$@"' > /usr/bin/pip \
&& echo 'wine '\''C:\Python37\Scripts\pyinstaller.exe'\'' "$@"' > /usr/bin/pyinstaller \
&& echo 'wine '\''C:\Python37\Scripts\pyupdater.exe'\'' "$@"' > /usr/bin/pyupdater \
&& echo 'assoc .py=PythonScript' | wine cmd \
&& echo 'ftype PythonScript=c:\Python37\python.exe "%1" %*' | wine cmd \
&& while pgrep wineserver >/dev/null; do echo "Waiting for wineserver"; sleep 1; done \
&& chmod +x /usr/bin/python /usr/bin/easy_install /usr/bin/pip /usr/bin/pyinstaller /usr/bin/pyupdater \
&& (pip install -U pip || true) \
&& rm -rf /tmp/.wine-*
ENV W_DRIVE_C=/wine/drive_c
ENV W_WINDIR_UNIX="$W_DRIVE_C/windows"
ENV W_SYSTEM64_DLLS="$W_WINDIR_UNIX/system32"
ENV W_TMP="$W_DRIVE_C/windows/temp/_$0"
# install Microsoft Visual C++ Redistributable for Visual Studio 2017 dll files
RUN set -x \
&& rm -f "$W_TMP"/* \
&& wget -P "$W_TMP" https://download.visualstudio.microsoft.com/download/pr/11100230/15ccb3f02745c7b206ad10373cbca89b/VC_redist.x64.exe \
&& cabextract -q --directory="$W_TMP" "$W_TMP"/VC_redist.x64.exe \
&& cabextract -q --directory="$W_TMP" "$W_TMP/a10" \
&& cabextract -q --directory="$W_TMP" "$W_TMP/a11" \
&& cd "$W_TMP" \
&& rename 's/_/\-/g' *.dll \
&& cp "$W_TMP"/*.dll "$W_SYSTEM64_DLLS"/
# install pyinstaller
RUN /usr/bin/pip install pyinstaller==$PYINSTALLER_VERSION
# put the src folder inside wine
RUN mkdir /src/ && ln -s /src /wine/drive_c/src
VOLUME /src/
WORKDIR /wine/drive_c/src/
RUN mkdir -p /wine/drive_c/tmp
COPY entrypoint.sh /entrypoint.sh COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh

View File

@@ -1,2 +1,54 @@
# pyinstaller-action # pyinstaller-action
Github Action for building executables with Pyinstaller
Github Action for building executables with PyInstaller
To build your application, you need to specify where your source code is via the `path` argument, this defaults to `src`.
The source code directory should have your `.spec` file that PyInstaller generates. If you don't have one, you'll need to run PyInstaller once locally to generate it.
If the `src` folder has a `requirements.txt` file, the packages will be installed into the environment before PyInstaller runs.
## Example usage
Include this in your `.github/workflows/main.yaml`:
```yaml
- name: PyInstaller Windows
uses: JackMcKew/pyinstaller-action-windows@master
```
## Full Example
Here is an entire workflow for:
- Packaging an application with PyInstaller
- Uploading the packaged executable as an artifact
``` yaml
name: Package Application with Pyinstaller
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Package Application
uses: JackMcKew/pyinstaller-action-windows@master
with:
path: src
- uses: actions/upload-artifact@v2
with:
name: name-of-artifact
path: src/dist/windows
```

View File

@@ -8,7 +8,7 @@ inputs:
path: path:
description: 'Directory containing source code & .spec file (optional requirements.txt).' description: 'Directory containing source code & .spec file (optional requirements.txt).'
required: True required: True
default: src/ default: src
outputs: outputs:
output: output:
description: 'The output of PyInstaller' description: 'The output of PyInstaller'

View File

@@ -6,14 +6,12 @@ set -e
# Make sure .bashrc is sourced # Make sure .bashrc is sourced
. /root/.bashrc . /root/.bashrc
cp $1 /src/
# Allow the workdir to be set using an env var. # Allow the workdir to be set using an env var.
# Useful for CI pipiles which use docker for their build steps # Useful for CI pipiles which use docker for their build steps
# and don't allow that much flexibility to mount volumes # and don't allow that much flexibility to mount volumes
# Provided path, or val if not set SRCDIR=$1
WORKDIR=$1
# WORKDIR=${1:-/src} WORKDIR=${SRCDIR:-/src}
# #
# In case the user specified a custom URL for PYPI, then use # In case the user specified a custom URL for PYPI, then use
@@ -39,12 +37,11 @@ if [ -f requirements.txt ]; then
pip install -r requirements.txt pip install -r requirements.txt
fi # [ -f requirements.txt ] fi # [ -f requirements.txt ]
echo "$@"
if [[ "$@" == "" ]]; then
# if [[ "$@" == "" ]]; then
pyinstaller --clean -y --dist ./dist/windows --workpath /tmp *.spec pyinstaller --clean -y --dist ./dist/windows --workpath /tmp *.spec
chown -R --reference=. ./dist/windows chown -R --reference=. ./dist/windows
else # else
sh -c "$@" # sh -c "$@"
fi # [[ "$@" == "" ]] # fi # [[ "$@" == "" ]]