Bump pyside6-essentials from 6.7.0 to 6.7.1 #480
Workflow file for this run
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
--- | |
# yamllint disable rule:line-length | |
name: package | |
# yamllint disable-line rule:truthy | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
name: ${{ matrix.buildname }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- windows-latest | |
- macos-latest | |
- ubuntu-latest | |
python-version: | |
- "3.10" | |
include: | |
- os: windows-latest | |
buildname: Windows | |
artifact-name: xitomatl for Windows | |
artifact-file: xitomatl.exe | |
command: ./xitomatl.exe | |
nuitka-arguments: --windows-icon-from-ico=xitomatl.png --lto=no | |
- os: macos-latest | |
buildname: macOS | |
artifact-name: xitomatl for macOS | |
artifact-file: xitomatl.app | |
command: xitomatl.app/Contents/MacOS/xitomatl | |
nuitka-arguments: --macos-app-icon=xitomatl.png --clang --macos-create-app-bundle | |
- os: ubuntu-latest | |
buildname: Linux | |
artifact-name: xitomatl for Linux | |
artifact-file: xitomatl.bin | |
command: ./xitomatl.bin | |
nuitka-arguments: --linux-onefile-icon=xitomatl.png | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v2 | |
with: | |
submodules: false | |
fetch-depth: 0 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Use Poetry | |
uses: Gr1N/setup-poetry@v8 | |
- name: Install dependencies | |
run: poetry install --no-root --no-interaction | |
- name: (Linux) Install runtime dependencies | |
if: runner.os == 'Linux' | |
uses: nick-invision/retry@v2 | |
with: | |
timeout_minutes: 10 | |
retry_wait_seconds: 30 | |
max_attempts: 3 | |
command: >- | |
sudo apt-get update && | |
sudo apt-get install | |
libegl1 | |
libopengl0 | |
- name: (macOS) Fix build dependencies | |
if: runner.os == 'macOS' | |
shell: bash | |
run: >- | |
brew link --overwrite openssl@1.1 | |
- name: Use version from Git | |
shell: bash | |
run: ./update_version.sh | |
- name: Create package | |
env: | |
PYTHONIOENCODING: utf-8 | |
LD_LIBRARY_PATH: /usr/local/lib/:$LD_LIBRARY_PATH | |
run: >- | |
poetry run python -m nuitka | |
--onefile | |
--standalone | |
--python-flag=no_site | |
--assume-yes-for-downloads | |
--plugin-enable=pyside6 | |
--plugin-enable=anti-bloat | |
--show-modules | |
--show-scons | |
${{ matrix.nuitka-arguments }} | |
xitomatl | |
- name: List package files | |
shell: bash | |
run: ls -lSh xitomatl.dist | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ${{ matrix.artifact-name }} | |
path: ${{ matrix.artifact-file }} | |
if-no-files-found: error | |
- name: Run smoke test | |
shell: bash | |
run: ${{ matrix.command }} --version | |
- name: Run tests | |
run: poetry run pytest |