Skip to content

Commit ca259f8

Browse files
committed
chore: build ios
1 parent 446b443 commit ca259f8

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/ui-tests.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,18 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
include:
21+
- targetPlatform: StandaloneOSX
22+
buildMethod: MacBuilder.BuildForAltTester
23+
buildPath: sample/Builds/MacOS
24+
- targetPlatform: StandaloneWindows64
25+
buildMethod: WindowsBuilder.BuildForAltTester
26+
buildPath: sample/Builds/Windows64
27+
- targetPlatform: Android
28+
buildMethod: MobileBuilder.BuildForAltTester
29+
buildPath: sample/Builds/Android
2130
- targetPlatform: iOS
2231
buildMethod: MobileBuilder.BuildForAltTester
23-
buildPath: iOS
32+
buildPath: build/iOS
2433
steps:
2534
- uses: actions/checkout@v3
2635
with:
@@ -43,14 +52,12 @@ jobs:
4352
projectPath: sample
4453
buildMethod: ${{ matrix.buildMethod }}
4554
customParameters: -logFile logFile.log -quit -batchmode
46-
- name: List build directory
47-
run: ls -R ./
4855
- name: Upload artifact
4956
uses: actions/upload-artifact@v4
5057
if: always()
5158
with:
5259
name: Build-${{ matrix.targetPlatform }}
53-
path: sample/Builds/${{ matrix.buildPath }}
60+
path: ${{ matrix.buildPath }}
5461
test:
5562
name: Run ${{ matrix.targetPlatform }} UI tests 🧪
5663
needs: build

0 commit comments

Comments
 (0)