Skip to content

Commit

Permalink
Add a CI workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Nov 20, 2023
1 parent 252d48b commit ba9c4b3
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: CI
on:
pull_request:

env:
FORCE_COLOR: "1"

defaults:
run:
shell: bash

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

jobs:
build:
runs-on: macOS-latest
strategy:
matrix:
# target: ['macOS', 'iOS', 'tvOS', 'watchOS']
target: ['macOS']
include:
- briefcase-run-args:

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

- name: Extract config variables
id: config-vars
run: |
PYTHON_VER=$(make config | grep "PYTHON_VER=" | cut -d "=" -f 2)
echo "PYTHON_VER=${PYTHON_VER}" | tee -a ${GITHUB_OUTPUT}
- name: Set up Python
uses: actions/[email protected]
with:
# Appending -dev ensures that we can always build the dev release.
# It's a no-op for versions that have been published.
python-version: ${{ steps.config-vars.outputs.PYTHON_VER }}-dev

- name: Build ${{ matrix.target }}
run: |
# Do the build for the requested target.
make ${{ matrix.target }}
- uses: actions/checkout@v4
with:
repository: beeware/Python-support-testbed
path: Python-support-testbed
# ref:

- name: Install dependencies
run: |
# Use the development version of Briefcase
python -m pip install git+https://github.com/beeware/briefcase.git
- name: Run support testbed check
working-directory: Python-support-testbed
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\'

0 comments on commit ba9c4b3

Please sign in to comment.