File tree Expand file tree Collapse file tree 1 file changed +21
-4
lines changed Expand file tree Collapse file tree 1 file changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,8 @@ concurrency:
12
12
13
13
jobs :
14
14
build :
15
- if : github.event.pull_request.head.repo.fork == false
16
15
name : Build sample game for AltTester 🛠️
17
- runs-on : windows-2022
16
+ runs-on : ubuntu-latest-8-cores
18
17
steps :
19
18
- uses : actions/checkout@v3
20
19
with :
@@ -32,13 +31,31 @@ jobs:
32
31
UNITY_PASSWORD : ${{ secrets.UNITY_PASSWORD }}
33
32
UNITY_SERIAL : ${{ secrets.UNITY_SERIAL }}
34
33
with :
35
- targetPlatform : StandaloneWindows64
34
+ targetPlatform : StandaloneOSX
36
35
projectPath : sample
37
- buildMethod : WindowsBuilder .BuildForAltTester
36
+ buildMethod : MacBuilder .BuildForAltTester
38
37
customParameters : -logFile logFile.log -quit -batchmode
38
+ - name : Upload artifact
39
+ uses : actions/upload-artifact@v4
40
+ with :
41
+ name : Build-StandaloneOSX
42
+ path : sample/**
43
+ test :
44
+ name : Run UI tests on AltTester 🧪
45
+ runs-on : macos-latest
46
+ needs : build
47
+ steps :
48
+ - uses : actions/checkout@v3
49
+ with :
50
+ lfs : true
51
+ - uses : actions/download-artifact@v4
52
+ with :
53
+ name : Build-StandaloneOSX
39
54
- name : Open application
40
55
working-directory : sample/Builds/MacOS
41
56
run : |
57
+ pwd
58
+ ls -la
42
59
export RUN_IN_BROWSERSTACK="false"
43
60
export ALTSERVER_PORT=13005
44
61
export ALTSERVER_HOST="192.168.11.35"
You can’t perform that action at this time.
0 commit comments