diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 988460024..94bbc8bba 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -203,6 +203,11 @@ jobs: username: ${{ secrets.UNITY_USERNAME }} password: ${{ secrets.UNITY_PASSWORD }} serial_ids: ${{ secrets.SERIAL_ID }} + - name: Workaround tvOS XCode 15 issue + if: ${{ contains(matrix.platform, 'tvOS') && contains(matrix.unity_version, '2020') }} + shell: bash + run: | + find /Applications/Unity/Hub/Editor -type f -name 'UnityViewControllerBase.h' -exec sed -i '' 's/#import /#import /g' {} \; - name: Prepare for integration tests timeout-minutes: 10 shell: bash