From a2694eb478ef0b0af3bbb37cfa533dfc74edb216 Mon Sep 17 00:00:00 2001 From: Andrew Yang Date: Tue, 12 Nov 2024 15:14:32 +1100 Subject: [PATCH] chore: host --- .github/workflows/ui-tests.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index 3eae709c..6d456f17 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -18,6 +18,15 @@ 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: build/iOS @@ -41,6 +50,8 @@ jobs: with: targetPlatform: ${{ matrix.targetPlatform }} projectPath: sample + buildMethod: ${{ matrix.buildMethod }} + customParameters: -logFile logFile.log -quit -batchmode --host 172.20.10.2 - name: List build directory run: ls -R ./ - name: Upload artifact @@ -48,7 +59,7 @@ jobs: if: always() with: name: Build-${{ matrix.targetPlatform }} - path: build + path: ${{ matrix.buildPath }} test: name: Run ${{ matrix.targetPlatform }} UI tests 🧪 needs: build