20 Commits

Author SHA1 Message Date
Jack McKew
a8dee21ad0 Merge pull request #2 from biplobsd/main
Argument for specifying .spec file to build
2020-06-26 08:17:34 +10:00
Biplob SD
7071c8c601 specific file 2020-06-25 19:30:22 +06:00
Biplob SD
4e2ef9706a Update action.yml 2020-06-25 18:12:28 +06:00
Biplob SD
9cdd374622 default *.spec 2020-06-25 17:37:37 +06:00
Biplob SD
b22424d290 default *.spec 2020-06-25 17:35:29 +06:00
Biplob SD
99ed1fb8c9 Update entrypoint.sh 2020-06-25 00:43:06 +06:00
Biplob SD
b469d4d30a Update entrypoint.sh 2020-06-25 00:24:03 +06:00
Biplob SD
ac8fd363b0 Update entrypoint.sh 2020-06-25 00:03:26 +06:00
Biplob SD
681336b7ae upgrade builds tools 2020-06-24 23:52:49 +06:00
Biplob SD
f1f2d7035f SPEC_FILE 2020-06-24 23:11:48 +06:00
Biplob SD
ff7e885f69 spec path 2020-06-24 22:57:19 +06:00
Fizban
33e01256d3 Add FAQ and example repo 2020-06-15 21:10:01 +10:00
Fizban
318c4aa936 For clarity 2020-06-08 21:03:55 +10:00
Fizban
2790537b70 Main as default branch 2020-06-08 21:01:01 +10:00
Jack McKew
a9a33a332d add notes 2020-06-04 09:25:21 +10:00
Fizban
0ef75fa4df Update README 2020-06-03 10:06:39 +10:00
Fizban
552fdbedd1 Add to action 2020-06-03 10:04:29 +10:00
Fizban
c2734ccf37 Remove spaces 2020-06-03 10:01:35 +10:00
Fizban
a118eb0da4 Add pypi mirror 2020-06-03 09:58:23 +10:00
Fizban
eb09f72a9c Update readme for 0.1.0 release 2020-06-03 00:50:15 +10:00
3 changed files with 105 additions and 11 deletions

View File

@@ -1,2 +1,76 @@
# pyinstaller-action # PyInstaller-Action-Windows
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.
Also if you have another program `.spec` file you can set specific pyinstaller `.spec` file by `spec: <YOUR_SPEC_FILE_NAME>`
If the `src` folder has a `requirements.txt` file, the packages will be installed into the environment before PyInstaller runs.
If you wish to specify a package mirror, this is possibly via the `pypi_url` and/or the `pypi_index_url`, these defaults are:
- `pypi_url` = `https://pypi.python.org/`
- `pypi_index_url` = `https://pypi.python.org/simple`
> If you are using the default Python `gitignore` file, ensure to remove `.spec`.
> This action uses [Wine](https://www.winehq.org) to emulate windows inside Docker for packaging POSIX executables.
## Example usage
There's an example repository where you can see this action in action: <https://github.com/JackMcKew/pyinstaller-action-windows-example>. Where you can find the packaged executable at: <https://github.com/JackMcKew/pyinstaller-action-windows-example/actions/runs/135879475>.
Include this in your `.github/workflows/main.yaml`:
```yaml
- name: PyInstaller Windows
uses: JackMcKew/pyinstaller-action-windows@main
with:
path: src
```
## 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@main
with:
path: src
- uses: actions/upload-artifact@v2
with:
name: name-of-artifact
path: src/dist/windows
```
## FAQ
If you get this error: `OSError: [WinError 123] Invalid name: '/tmp\\*'`, ensure your path is correctly configured, the default is `src`.
## Sources
A big thank you to all the contributors over at <https://github.com/cdrx/docker-pyinstaller>, this action is just a modified version of their docker container, thank you!

View File

@@ -6,9 +6,21 @@ branding:
color: 'blue' color: 'blue'
inputs: inputs:
path: path:
description: 'Directory containing source code & .spec file (optional requirements.txt).' description: 'Directory containing source code (optional requirements.txt).'
required: True required: True
default: src default: src
pypi_url:
description: 'Specify a custom URL for PYPI'
required: False
default: https://pypi.python.org/
pypi_index_url:
description: 'Specify a custom URL for PYPI Index'
required: False
default: https://pypi.python.org/simple
spec:
description: 'Specify a file path for .spec file'
required: False
default: ""
outputs: outputs:
output: output:
description: 'The output of PyInstaller' description: 'The output of PyInstaller'
@@ -18,3 +30,6 @@ runs:
image: 'Dockerfile' image: 'Dockerfile'
args: args:
- ${{ inputs.path }} - ${{ inputs.path }}
- ${{ inputs.pypi_url }}
- ${{ inputs.pypi_index_url }}
- ${{ inputs.spec }}

View File

@@ -11,8 +11,16 @@ set -e
# and don't allow that much flexibility to mount volumes # and don't allow that much flexibility to mount volumes
SRCDIR=$1 SRCDIR=$1
PYPI_URL=$2
PYPI_INDEX_URL=$3
WORKDIR=${SRCDIR:-/src} WORKDIR=${SRCDIR:-/src}
SPEC_FILE=${4:-*.spec}
python -m pip install --upgrade pip wheel setuptools
# #
# In case the user specified a custom URL for PYPI, then use # In case the user specified a custom URL for PYPI, then use
# that one, instead of the default one. # that one, instead of the default one.
@@ -30,20 +38,17 @@ if [[ "$PYPI_URL" != "https://pypi.python.org/" ]] || \
echo "Using custom pip.ini: " echo "Using custom pip.ini: "
cat /wine/drive_c/users/root/pip/pip.ini cat /wine/drive_c/users/root/pip/pip.ini
fi fi
echo "before cd"
ls
cd $WORKDIR cd $WORKDIR
echo "after cd"
ls
if [ -f requirements.txt ]; then if [ -f requirements.txt ]; then
pip install -r requirements.txt pip install -r requirements.txt
fi # [ -f requirements.txt ] fi # [ -f requirements.txt ]
echo "this is at"
echo "$@"
# if [[ "$@" == "" ]]; then # if [[ "$@" == "" ]]; then
pyinstaller --clean -y --dist ./dist/windows --workpath /tmp *.spec pyinstaller --clean -y --dist ./dist/windows --workpath /tmp $SPEC_FILE
chown -R --reference=. ./dist/windows chown -R --reference=. ./dist/windows
# else # else
# sh -c "$@" # sh -c "$@"