We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d457936 commit 6a7485aCopy full SHA for 6a7485a
.github/workflows/integration_tests.yml
@@ -203,6 +203,11 @@ jobs:
203
username: ${{ secrets.UNITY_USERNAME }}
204
password: ${{ secrets.UNITY_PASSWORD }}
205
serial_ids: ${{ secrets.SERIAL_ID }}
206
+ - name: Workaround tvOS XCode 15 issue
207
+ if: ${{ contains(matrix.platform, 'tvOS') && contains(matrix.unity_version, '2020') }}
208
+ shell: bash
209
+ run: |
210
+ find /Applications/Unity/Hub/Editor -type f -name 'UnityViewControllerBase.h' -exec sed -i '' 's/#import <GameController\/GCController.h>/#import <GameController\/GCEventViewController.h>/g' {} \;
211
- name: Prepare for integration tests
212
timeout-minutes: 10
213
shell: bash
0 commit comments