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
2 changes: 1 addition & 1 deletion .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
test:
if: github.event.pull_request.head.repo.fork == false
name: Test sample game 🧪
name: Build sample app 🛠️
runs-on: ubuntu-latest-8-cores

steps:
Expand Down
46 changes: 24 additions & 22 deletions .github/workflows/ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ on:
- StandaloneOSX # Builds Unity 2021 macOS only
- StandaloneOSX-Unity6 # Builds Unity 6 macOS only
- StandaloneWindows64
- Android
- iOS
# - Android
# - iOS
push:
branches: [main]
pull_request:
Expand All @@ -32,7 +32,6 @@ jobs:
fail-fast: false
matrix:
include:
# Unity 2021 macOS build
- targetPlatform: StandaloneOSX
buildMethod: MacBuilder.BuildForAltTester
buildPath: sample/Builds/MacOS
Expand All @@ -43,11 +42,11 @@ jobs:
buildPath: sample/Builds/Windows64
projectPath: sample
unityVersion: 2021.3.26f1
- targetPlatform: Android
buildMethod: MobileBuilder.BuildForAltTester
buildPath: sample/Builds/Android
projectPath: sample
unityVersion: 2021.3.26f1
# - targetPlatform: Android
# buildMethod: MobileBuilder.BuildForAltTester
# buildPath: sample/Builds/Android
# projectPath: sample
# unityVersion: 2021.3.26f1
steps:
- uses: actions/checkout@v3
if: github.event_name != 'workflow_dispatch' || github.event.inputs.targetPlatform == 'All' || github.event.inputs.targetPlatform == matrix.targetPlatform
Expand Down Expand Up @@ -255,20 +254,23 @@ jobs:
security default-keychain -s ~/Library/Keychains/login.keychain-db
security list-keychains -d user -s ~/Library/Keychains/login.keychain-db
security list-keychains
build-ios: #test-ios:
name: Run iOS build #UI tests 🧪
needs:
- build
- test
runs-on: [ self-hosted, macOS ]
if: github.event_name != 'workflow_dispatch' || github.event.inputs.targetPlatform == 'All' || github.event.inputs.targetPlatform == 'iOS'
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: Build iOS app
working-directory: sample
run: ./build_ios.sh
# build-ios: #test-ios:
# name: Run iOS build #UI tests 🧪
# needs:
# - build
# - test
# runs-on: [ self-hosted, macOS ]
# if: github.event_name != 'workflow_dispatch' || github.event.inputs.targetPlatform == 'All' || github.event.inputs.targetPlatform == 'iOS'
# steps:
# - uses: actions/checkout@v3
# with:
# lfs: true
# - name: Build iOS app
# working-directory: sample
# run: |
# export TMPDIR=/Users/svc_buildsdk/tmp
# mkdir -p $TMPDIR
# ./build_ios.sh
# - uses: actions/setup-python@v4
# with:
# python-version: "3.13"
Expand Down
Loading