Skip to content

Commit a2694eb

Browse files
committed
chore: host
1 parent 12d634f commit a2694eb

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/ui-tests.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@ 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
2332
buildPath: build/iOS
@@ -41,14 +50,16 @@ jobs:
4150
with:
4251
targetPlatform: ${{ matrix.targetPlatform }}
4352
projectPath: sample
53+
buildMethod: ${{ matrix.buildMethod }}
54+
customParameters: -logFile logFile.log -quit -batchmode --host 172.20.10.2
4455
- name: List build directory
4556
run: ls -R ./
4657
- name: Upload artifact
4758
uses: actions/upload-artifact@v4
4859
if: always()
4960
with:
5061
name: Build-${{ matrix.targetPlatform }}
51-
path: build
62+
path: ${{ matrix.buildPath }}
5263
test:
5364
name: Run ${{ matrix.targetPlatform }} UI tests 🧪
5465
needs: build

0 commit comments

Comments
 (0)