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
25 changes: 25 additions & 0 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,28 @@ jobs:
archive \
-scheme GTMAppAuth \
-destination "generic/platform=tvOS"

xcode-27-preview-archive:
# Archive every supported platform against the Xcode 27 preview image. The
# image is preview, so this job does not block merges.
# https://github.com/actions/runner-images/issues/14404
runs-on: xcode-27
continue-on-error: true
strategy:
fail-fast: false
matrix:
destination: [
'generic/platform=iOS',
'platform=OS X',
'generic/platform=watchOS',
'generic/platform=tvOS'
]

steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Archive
run: |
xcodebuild \
archive \
-scheme GTMAppAuth \
-destination "${{ matrix.destination }}"
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
14 changes: 14 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,17 @@ jobs:
run: swift build
- name: Run Swift tests
run: swift test

xcode-27-preview-test:
# Xcode 27 is currently only available on the preview `xcode-27` image, on
# which Xcode 27 beta is the only (thus, default) Xcode. The image is
# preview, so this job does not block merges.
# https://github.com/actions/runner-images/issues/14404
runs-on: xcode-27
continue-on-error: true
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Build package
run: swift build
- name: Run Swift tests
run: swift test
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
Loading