Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove testing apps since CI will generate them now; disable PySide2 testing #45

Merged
merged 2 commits into from
Nov 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 11 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,24 @@ on:
- main
workflow_call:

# Cancel active CI runs for a PR before starting another run
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

defaults:
run:
shell: bash # https://github.com/beeware/briefcase/pull/912
shell: bash

env:
FORCE_COLOR: "1"

jobs:
pre-commit:
name: Pre-commit checks
uses: beeware/.github/.github/workflows/pre-commit-run.yml@main
with:
pre-commit-source: "pre-commit"
pre-commit-source: pre-commit

verify-apps:
name: Build apps
Expand All @@ -31,21 +39,9 @@ jobs:
fail-fast: false
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
framework: [ "toga", "pyside2", "pyside6", "ppb", "pygame" ]
framework: [ "toga", "pyside6", "ppb", "pygame" ]
exclude:
# PyGObject cannot be built using the current version of Standalone Python
# See https://github.com/indygreg/python-build-standalone/issues/194
- python-version: "3.12"
framework: "toga"
# PySide 2 doesn't publish binary wheels that are compatible with Python 3.11+
# and/or Ubuntu 22.04 (and is unlikely to ever do so.)
- python-version: "3.11"
framework: "pyside2"
- python-version: "3.12"
framework: "pyside2"
# PySide 6 doesn't currently publish binary wheels
# that are compatible with Python 3.11+ and/or Ubuntu 22.04
- python-version: "3.11"
framework: "pyside6"
- python-version: "3.12"
framework: "pyside6"
27 changes: 0 additions & 27 deletions tests/apps/verify-ppb/pyproject.toml

This file was deleted.

Empty file.
4 changes: 0 additions & 4 deletions tests/apps/verify-ppb/src/verify_ppb/__main__.py

This file was deleted.

46 changes: 0 additions & 46 deletions tests/apps/verify-ppb/src/verify_ppb/app.py

This file was deleted.

Empty file.
Binary file not shown.
Binary file not shown.
1 change: 0 additions & 1 deletion tests/apps/verify-pygame/CHANGELOG

This file was deleted.

1 change: 0 additions & 1 deletion tests/apps/verify-pygame/LICENSE

This file was deleted.

27 changes: 0 additions & 27 deletions tests/apps/verify-pygame/pyproject.toml

This file was deleted.

Empty file.
4 changes: 0 additions & 4 deletions tests/apps/verify-pygame/src/verify_pygame/__main__.py

This file was deleted.

50 changes: 0 additions & 50 deletions tests/apps/verify-pygame/src/verify_pygame/app.py

This file was deleted.

Empty file.
Binary file not shown.
Binary file not shown.
27 changes: 0 additions & 27 deletions tests/apps/verify-pyside2/pyproject.toml

This file was deleted.

Empty file.
4 changes: 0 additions & 4 deletions tests/apps/verify-pyside2/src/verify_pyside2/__main__.py

This file was deleted.

44 changes: 0 additions & 44 deletions tests/apps/verify-pyside2/src/verify_pyside2/app.py

This file was deleted.

Empty file.
Binary file not shown.
Binary file not shown.
27 changes: 0 additions & 27 deletions tests/apps/verify-pyside6/pyproject.toml

This file was deleted.

Empty file.
4 changes: 0 additions & 4 deletions tests/apps/verify-pyside6/src/verify_pyside6/__main__.py

This file was deleted.

44 changes: 0 additions & 44 deletions tests/apps/verify-pyside6/src/verify_pyside6/app.py

This file was deleted.

Empty file.
Binary file not shown.
Binary file not shown.
Loading