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
4 changes: 2 additions & 2 deletions .github/workflows/build_starter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ on:
required: false
platforms:
description: 'Test Platforms of Android,iOS,Windows,macOS,Linux,Playmode'
default: 'Android,iOS,Windows,macOS,Linux,Playmode'
default: 'Android,iOS,tvOS,Windows,macOS,Linux,Playmode'
required: true
apis:
description: 'CSV of apis to build and test'
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:

trigger_reusable_package:
name: package ${{ needs.check_and_prepare.outputs.release_label }}
needs: [check_and_prepare, build_android, build_ios, build_linux, build_macos, build_windows, decide_build_branch]
needs: [check_and_prepare, build_android, build_ios, build_tvos, build_linux, build_macos, build_windows, decide_build_branch]
uses: ./.github/workflows/package.yml
if: (needs.check_and_prepare.outputs.should_trigger_package == 'true') && !cancelled() && !failure()
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
description: 'Build OS (value: windows-latest, macos-latest. Left empty will use macos-latest for iOS platform, windows-latest for the rest)'
platforms:
description: 'CSV of Android,iOS,Windows,macOS,Linux,Playmode'
default: 'Android,iOS,Windows,macOS,Linux,Playmode'
default: 'Android,iOS,tvOS,Windows,macOS,Linux,Playmode'
required: true
apis:
description: 'CSV of apis to build and test'
Expand Down
3 changes: 1 addition & 2 deletions scripts/gha/print_matrix_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,12 @@
MACOS_RUNNER = "macos-latest"
LINUX_RUNNER = "ubuntu-latest"

# TODO @drsanta add TVOS to the platforms once the integration tests can be run on tvOS.
PARAMETERS = {
"integration_tests": {
"matrix": {
"unity_versions": ["2020"],
"build_os": [""],
"platforms": [WINDOWS, MACOS, LINUX, ANDROID, IOS, PLAYMODE],
"platforms": [WINDOWS, MACOS, LINUX, ANDROID, IOS, TVOS, PLAYMODE],
"mobile_devices": ["android_target", "ios_target", "simulator_target", "tvos_simulator"],
"mobile_test_on": ["real"],

Expand Down