File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -446,7 +446,7 @@ jobs:
446
446
fail-fast : false
447
447
matrix :
448
448
api-level : [30, 31, 34] # last updated January 2025
449
- unity-version : ["2019", "2022", " 6000"]
449
+ unity-version : ["2019", "6000"]
450
450
451
451
mobile-smoke-test-compile :
452
452
if : ${{ !startsWith(github.ref, 'refs/heads/release/') }}
@@ -507,7 +507,12 @@ jobs:
507
507
508
508
- name : Android smoke test
509
509
if : ${{ matrix.platform == 'Android' }}
510
- run : ./scripts/smoke-test-android.ps1 Build -IsIntegrationTest -UnityVersion "${{ matrix.unity-version }}"
510
+ # Skipping Android on Unity 2022 for now
511
+ run : |
512
+ if ("${{ matrix.unity-version }}" -ne "2022")
513
+ {
514
+ ./scripts/smoke-test-android.ps1 Build -IsIntegrationTest -UnityVersion "${{ matrix.unity-version }}"
515
+ }
511
516
timeout-minutes : 10
512
517
env :
513
518
JAVA_HOME : ${{ env.JAVA_HOME }}
@@ -530,6 +535,9 @@ jobs:
530
535
531
536
- name : Upload app
532
537
uses : actions/upload-artifact@v4
538
+ # Skipping Android on Unity 2022 for now
539
+ if : |
540
+ !(matrix.platform == 'Android' && matrix.unity-version == '2022') || matrix.platform == 'iOS'
533
541
with :
534
542
name : testapp-${{ matrix.platform }}-compiled-${{ matrix.unity-version }}
535
543
# Collect app but ignore the files that are not required for the test.
You can’t perform that action at this time.
0 commit comments