Skip to content
Open
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
6 changes: 6 additions & 0 deletions .github/workflows/spm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,3 +149,9 @@ jobs:
run: scripts/third_party/travis/retry.sh ./scripts/build.sh version-test ${{ matrix.target }} spm
- name: Analytics Build Tests
run: scripts/third_party/travis/retry.sh ./scripts/build.sh analytics-import-test ${{ matrix.target }} spm
- name: Upload xcodebuild logs
if: failure()
uses: actions/upload-artifact@v4
with:
name: xcodebuild-logs-${{ matrix.target }}
path: xcodebuild-*.log
4 changes: 2 additions & 2 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ ipad_flags=(

macos_flags=(
-sdk 'macosx'
-destination 'platform=OS X,arch=x86_64'
-destination 'platform=OS X,arch=arm64'
)
tvos_flags=(
-sdk "appletvsimulator"
Expand All @@ -195,7 +195,7 @@ visionos_flags=(
)
catalyst_flags=(
ARCHS=x86_64 VALID_ARCHS=x86_64 SUPPORTS_MACCATALYST=YES -sdk macosx
-destination platform="macOS,variant=Mac Catalyst,arch=x86_64" TARGETED_DEVICE_FAMILY=2
-destination platform="macOS,variant=Mac Catalyst,arch=arm64" TARGETED_DEVICE_FAMILY=2
CODE_SIGN_IDENTITY=- CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
)

Expand Down
Loading