Skip to content

Commit 2275ce5

Browse files
committed
ci: remove unnecessary mobile build in ui test action
1 parent a01fcd6 commit 2275ce5

File tree

1 file changed

+24
-22
lines changed

1 file changed

+24
-22
lines changed

.github/workflows/ui-tests.yml

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ on:
1414
- StandaloneOSX # Builds Unity 2021 macOS only
1515
- StandaloneOSX-Unity6 # Builds Unity 6 macOS only
1616
- StandaloneWindows64
17-
- Android
18-
- iOS
17+
# - Android
18+
# - iOS
1919
push:
2020
branches: [main]
2121
pull_request:
@@ -32,7 +32,6 @@ jobs:
3232
fail-fast: false
3333
matrix:
3434
include:
35-
# Unity 2021 macOS build
3635
- targetPlatform: StandaloneOSX
3736
buildMethod: MacBuilder.BuildForAltTester
3837
buildPath: sample/Builds/MacOS
@@ -43,11 +42,11 @@ jobs:
4342
buildPath: sample/Builds/Windows64
4443
projectPath: sample
4544
unityVersion: 2021.3.26f1
46-
- targetPlatform: Android
47-
buildMethod: MobileBuilder.BuildForAltTester
48-
buildPath: sample/Builds/Android
49-
projectPath: sample
50-
unityVersion: 2021.3.26f1
45+
# - targetPlatform: Android
46+
# buildMethod: MobileBuilder.BuildForAltTester
47+
# buildPath: sample/Builds/Android
48+
# projectPath: sample
49+
# unityVersion: 2021.3.26f1
5150
steps:
5251
- uses: actions/checkout@v3
5352
if: github.event_name != 'workflow_dispatch' || github.event.inputs.targetPlatform == 'All' || github.event.inputs.targetPlatform == matrix.targetPlatform
@@ -255,20 +254,23 @@ jobs:
255254
security default-keychain -s ~/Library/Keychains/login.keychain-db
256255
security list-keychains -d user -s ~/Library/Keychains/login.keychain-db
257256
security list-keychains
258-
build-ios: #test-ios:
259-
name: Run iOS build #UI tests 🧪
260-
needs:
261-
- build
262-
- test
263-
runs-on: [ self-hosted, macOS ]
264-
if: github.event_name != 'workflow_dispatch' || github.event.inputs.targetPlatform == 'All' || github.event.inputs.targetPlatform == 'iOS'
265-
steps:
266-
- uses: actions/checkout@v3
267-
with:
268-
lfs: true
269-
- name: Build iOS app
270-
working-directory: sample
271-
run: ./build_ios.sh
257+
# build-ios: #test-ios:
258+
# name: Run iOS build #UI tests 🧪
259+
# needs:
260+
# - build
261+
# - test
262+
# runs-on: [ self-hosted, macOS ]
263+
# if: github.event_name != 'workflow_dispatch' || github.event.inputs.targetPlatform == 'All' || github.event.inputs.targetPlatform == 'iOS'
264+
# steps:
265+
# - uses: actions/checkout@v3
266+
# with:
267+
# lfs: true
268+
# - name: Build iOS app
269+
# working-directory: sample
270+
# run: |
271+
# export TMPDIR=/Users/svc_buildsdk/tmp
272+
# mkdir -p $TMPDIR
273+
# ./build_ios.sh
272274
# - uses: actions/setup-python@v4
273275
# with:
274276
# python-version: "3.13"

0 commit comments

Comments
 (0)