Skip to content

Commit

Permalink
chore: build ios only
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-yangy committed Nov 12, 2024
1 parent 65c743d commit c7ffce6
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,8 @@ jobs:
fail-fast: false
matrix:
include:
- targetPlatform: StandaloneOSX
buildMethod: MacBuilder.BuildForAltTester
buildPath: MacOS
- targetPlatform: StandaloneWindows64
buildMethod: WindowsBuilder.BuildForAltTester
buildPath: Windows64
- targetPlatform: Android
buildMethod: MobileBuilder.BuildForAltTester
buildPath: Android
- targetPlatform: iOS
buildMethod: MobileBuilder.Build
buildMethod: MobileBuilder.BuildForAltTester
buildPath: iOS
steps:
- uses: actions/checkout@v3
Expand All @@ -50,11 +41,16 @@ jobs:
with:
targetPlatform: ${{ matrix.targetPlatform }}
projectPath: sample
buildMethod: ${{ matrix.buildMethod }}
customParameters: -logFile logFile.log -quit -batchmode
- name: List build directory
run: ls -R sample/Builds/
- name: Upload artifact
uses: actions/upload-artifact@v4
if: always()
with:
name: Build-${{ matrix.targetPlatform }}
path: build
path: sample/Builds/${{ matrix.buildPath }}
test:
name: Run ${{ matrix.targetPlatform }} UI tests 🧪
needs: build
Expand Down

0 comments on commit c7ffce6

Please sign in to comment.