Skip to content

Commit

Permalink
Add other platforms into CI check.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Nov 21, 2023
1 parent 6ec85e7 commit 55cf5f9
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,20 @@ jobs:
build:
runs-on: macOS-latest
strategy:
fail-fast: false
matrix:
# target: ['macOS', 'iOS', 'tvOS', 'watchOS']
target: ['macOS']
target: ['macOS', 'iOS', 'tvOS', 'watchOS']
include:
- briefcase-run-args:
- run-tests: false

- target: macOS
run-tests: true

- target: iOS
briefcase-run-args: ' -d "iPhone SE (3rd generation)"'
run-tests: true

# - target: iOS
# briefcase-run-args: ' -d "iPhone SE (3rd generation)"'
steps:
- uses: actions/checkout@v4

Expand All @@ -48,17 +54,20 @@ jobs:
make ${{ matrix.target }}
- uses: actions/checkout@v4
if: matrix.run-tests
with:
repository: beeware/Python-support-testbed
path: Python-support-testbed
ref: py3.13-support

- name: Install dependencies
if: matrix.run-tests
run: |
# Use the development version of Briefcase
python -m pip install git+https://github.com/beeware/briefcase.git
- name: Run support testbed check
if: matrix.run-tests
working-directory: Python-support-testbed
# TODO - remove the template_branch option.
run: briefcase run ${{ matrix.target }} Xcode --test ${{ matrix.briefcase-run-args }} -C support_package=\'../dist/Python-${{ steps.config-vars.outputs.PYTHON_VER }}-${{ matrix.target }}-support.custom.tar.gz\' -C template_branch=\'framework-lib\'

0 comments on commit 55cf5f9

Please sign in to comment.