update test workflow to python3.13 and poetry1.8.4 #167
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
# https://github.com/pyinstaller/pyinstaller/issues/6296#issuecomment-962446033 | |
name: Build Executable | |
on: [push, pull_request] | |
jobs: | |
build_exe: | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python-version: ["3.13"] | |
poetry-version: ["1.8.4"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install pyinstaller | |
run: pip install pyinstaller | |
- name: Install dependencies | |
run: pip install . | |
- name: Compile python to exe | |
run: | | |
mkdir -p build; | |
cd build; | |
if [ "$RUNNER_OS" == 'Windows' ]; then | |
PATH_SEPARATOR=";" | |
else | |
PATH_SEPARATOR=":" | |
fi | |
pyinstaller --onefile --name proxybroker-${RUNNER_OS}-$(arch) --add-data "../proxybroker/data${PATH_SEPARATOR}data" --workpath ./tmp --distpath . --clean ../py2exe_entrypoint.py; | |
rm -rf tmp *.spec; | |
- name: Archive proxybroker artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: proxybroker-build-artifacts | |
path: build/proxybroker-*-* |