-
Notifications
You must be signed in to change notification settings - Fork 1
82 lines (70 loc) · 2.45 KB
/
build-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Build Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
buildForStandaloneWindows64:
if: github.event.pull_request.draft == false
runs-on: self-hosted
steps:
- name: Chown files to koala
if: ${{ always() }}
run: sudo chown -R 'koala:' ~/office-runner/_work --recursive
- uses: actions/checkout@v4
with:
fetch-depth: 0
lfs: true
- uses: actions/cache@v4
with:
path: JamGame/Library
key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
restore-keys: |
Library-
- uses: game-ci/unity-builder@v4
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
with:
projectPath: JamGame
targetPlatform: StandaloneWindows64
runAsHostUser: true
chownFilesTo: koala
- name: Chown files to koala
if: ${{ always() }}
run: sudo chown -R 'koala:' ~/office-runner/_work --recursive
buildForStandaloneWindows:
if: github.event.pull_request.draft == false
runs-on: self-hosted
steps:
- name: Chown files to koala
if: ${{ always() }}
run: sudo chown -R 'koala:' ~/office-runner/_work --recursive
- uses: actions/checkout@v4
with:
fetch-depth: 0
lfs: true
- uses: actions/cache@v4
with:
path: JamGame/Library
key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
restore-keys: |
Library-
- uses: game-ci/unity-builder@v4
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
with:
projectPath: JamGame
targetPlatform: StandaloneWindows
runAsHostUser: true
chownFilesTo: koala
- name: Chown files to koala
if: ${{ always() }}
run: sudo chown -R 'koala:' ~/office-runner/_work --recursive
concurrency:
group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_id || github.event.pull_request.number || github.ref }}
cancel-in-progress: true