Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tvOS platform installation for publish jobs #124

Merged
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
10 changes: 10 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ publish:release-core:
stage: publish
timeout: 30m
script:
- xcodebuild -downloadPlatform tvOS -quiet
- !reference [.snippets, install-android-sdk]
- !reference [.snippets, set-publishing-credentials]
- ./gradlew :core:publishToSonatype --stacktrace --no-daemon
Expand All @@ -215,6 +216,7 @@ publish:release-logs:
stage: publish
timeout: 30m
script:
- xcodebuild -downloadPlatform tvOS -quiet
- !reference [.snippets, install-android-sdk]
- !reference [.snippets, set-publishing-credentials]
- ./gradlew :features:logs:publishToSonatype --stacktrace --no-daemon
Expand All @@ -226,6 +228,7 @@ publish:release-rum:
stage: publish
timeout: 30m
script:
- xcodebuild -downloadPlatform tvOS -quiet
- !reference [.snippets, install-android-sdk]
- !reference [.snippets, set-publishing-credentials]
- ./gradlew :features:rum:publishToSonatype --stacktrace --no-daemon
Expand All @@ -237,6 +240,9 @@ publish:release-webview:
stage: publish
timeout: 30m
script:
# even though WebView tracking doesn't support tvOS, Gradle will trigger core module pod
# compilation for tvOS by some reason
- xcodebuild -downloadPlatform tvOS -quiet
- !reference [.snippets, install-android-sdk]
- !reference [.snippets, set-publishing-credentials]
- ./gradlew :features:webview:publishToSonatype --stacktrace --no-daemon
Expand All @@ -248,6 +254,9 @@ publish:release-session-replay:
stage: publish
timeout: 30m
script:
# even though Session Replay doesn't support tvOS, Gradle will trigger core module pod
# compilation for tvOS by some reason
- xcodebuild -downloadPlatform tvOS -quiet
- !reference [.snippets, install-android-sdk]
- !reference [.snippets, set-publishing-credentials]
- ./gradlew :features:session-replay:publishToSonatype --stacktrace --no-daemon
Expand All @@ -259,6 +268,7 @@ publish:release-ktor:
stage: publish
timeout: 30m
script:
- xcodebuild -downloadPlatform tvOS -quiet
- !reference [.snippets, install-android-sdk]
- !reference [.snippets, set-publishing-credentials]
- ./gradlew :integrations:ktor:publishToSonatype --stacktrace --no-daemon
Expand Down