Skip to content
Merged
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
9 changes: 8 additions & 1 deletion .github/workflows/xcodebuild-or-fastlane.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
JSON-based collection of labels indicating which type of github runner should be chosen.
required: false
type: string
default: '["macos-15"]'
default: '["macos-26"]'
xcodeversion:
description: |
The Xcode version used for the build.
Expand Down Expand Up @@ -83,6 +83,11 @@ on:
required: false
type: string
default: ''
spm-disable-prebuilts:
description: |
Disables package prebuilts when resolving SPM dependencies
type: boolean
default: false
fastlanelane:
description: |
The lane of the fastlane command.
Expand Down Expand Up @@ -348,6 +353,7 @@ jobs:
-scheme ${{ inputs.scheme }} \
-resolvePackageDependencies \
-derivedDataPath ".derivedData" \
${{ inputs.spm-disable-prebuilts && '-IDEPackageEnablePrebuilts=NO' || '' }} \
| xcbeautify \
|| true
- name: Build and test (xcodebuild)
Expand Down Expand Up @@ -398,6 +404,7 @@ jobs:
OTHER_SWIFT_FLAGS="\$(inherited) $ENABLE_TESTING_FLAG $SWIFT_VERSION_FLAG" \
-skipPackagePluginValidation \
-skipMacroValidation \
${{ inputs.spm-disable-prebuilts && '-IDEPackageEnablePrebuilts=NO' || '' }} \
| xcbeautify
- name: Fastlane
if: ${{ inputs.fastlanelane != '' }}
Expand Down