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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:
jobs:
lint:
name: Lint
runs-on: macos-26
runs-on: xcode-27

steps:
- name: Checkout
Expand All @@ -33,7 +33,7 @@ jobs:
macos-build-and-test:
name: macOS Build + Test
needs: lint
runs-on: macos-26
runs-on: xcode-27

steps:
- name: Checkout
Expand All @@ -44,7 +44,7 @@ jobs:
RESULT_BUNDLE="$RUNNER_TEMP/BitDream.xcresult"
rm -rf "$RESULT_BUNDLE"

/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild test \
xcodebuild test \
-project BitDream.xcodeproj \
-scheme BitDream \
-configuration Debug \
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:

- name: Build app (iOS)
run: |
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild build \
xcodebuild build \
-project BitDream.xcodeproj \
-scheme BitDream \
-configuration Debug \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:

jobs:
release:
runs-on: macos-26
runs-on: xcode-27
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand Down
2 changes: 1 addition & 1 deletion BitDream/Widgets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Apple references: [background task setup](https://developer.apple.com/documentat

### Testing

- The iOS CI job uses GitHub's `xcode-27` runner because the new submission API requires the iOS 27 SDK. macOS jobs keep their existing runner.
- CI and releases use the `xcode-27` runner; the iOS background-task submission API requires the iOS 27 SDK.
- `WidgetRefreshOperationTests` covers snapshot production, timeout behavior, partial network failure, one reload per batch, serialized refreshes, and cancellation of active and queued work.
- Verify App Group access from both the host app and widget extension. Use Widget Previews for supported layouts.

Expand Down
Loading