Skip to content
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
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- backend: iOS
runs-on: macos-latest
briefcase-target: "iOS"
briefcase-run-args: ' -d "iPhone SE (3rd generation)"'
briefcase-run-args: ' -d "iPhone SE (3rd generation)::iOS 18.5"'

- backend: android
runs-on: ubuntu-latest
Expand Down Expand Up @@ -124,6 +124,16 @@ jobs:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- name: Prepare macOS
# GitHub recommends explicitly selecting the desired Xcode version:
# https://github.com/actions/runner-images/issues/12541#issuecomment-3083850140
# This became a necessity as a result of
# https://github.com/actions/runner-images/issues/12541 and
# https://github.com/actions/runner-images/issues/12751.
if: matrix.runs-on == 'macos-latest'
run: |
sudo xcode-select --switch /Applications/Xcode_16.4.app

- name: Install Dependencies
run: ${{ matrix.pre-command }}

Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/PyCQA/docformatter
rev: v1.7.8-rc1
rev: v1.7.7
hooks:
- id: docformatter
args: [--in-place, --black]
Expand Down
Loading