Skip to content

Commit

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

0 comments on commit a337543

Please sign in to comment.