-
Notifications
You must be signed in to change notification settings - Fork 1
206 lines (199 loc) · 7.18 KB
/
test-build-release.yaml
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
name: Test, Build and Release Pipeline
on:
push:
branches:
- main
jobs:
unity-test:
name: Test with Unity Test Runner
permissions: write-all
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/cache@v4
with:
path: ./aplib.net-demo/Library
key: Library-${{ hashFiles('aplib.net-demo/Assets/**', 'aplib.net-demo/Packages/**', 'aplib.net-demo/ProjectSettings/**') }}
restore-keys: |
Library-${{ hashFiles('aplib.net-demo/Assets/**', 'aplib.net-demo/Packages/**', 'aplib.net-demo/ProjectSettings/**') }}
- uses: game-ci/unity-test-runner@v4
id: unity-test-step
env:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
with:
projectPath: ./aplib.net-demo/
githubToken: ${{ secrets.GITHUB_TOKEN }}
coverageOptions: "generateAdditionalMetrics;generateHtmlReport;generateHtmlReportHistory;generateBadgeReport"
- uses: actions/upload-artifact@v4
if: always()
with:
name: Coverage results
path: ${{ steps.unity-test-step.outputs.coveragePath }}
- name: Collect Code Coverage with SonarCloud
uses: sonarsource/[email protected]
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
with:
args: >
-Dsonar.organization=team-zomsa
-Dsonar.projectKey=team-zomsa_aplib.net-demo
-Dsonar.cs.opencover.reportsPaths=${{ steps.unity-test-step.outputs.coveragePath }}/aplib.net-demo-opencov/**/TestCoverageResults_*.xml
build:
name: Build for ${{ matrix.targetPlatform }}, ${{ matrix.unity-version }}
needs: [unity-test]
runs-on: ubuntu-latest
strategy:
matrix:
unity-version:
- 2022.3.19f1
targetPlatform:
- StandaloneOSX
- StandaloneWindows64
- StandaloneLinux64
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
lfs: true
- name: Cache Dependencies
uses: actions/cache@v4
with:
path: ./aplib.net-demo/Library
key: Library-${{ hashFiles('aplib.net-demo/Assets/**', 'aplib.net-demo/Packages/**', 'aplib.net-demo/ProjectSettings/**') }}
restore-keys: |
Library-${{ hashFiles('aplib.net-demo/Assets/**', 'aplib.net-demo/Packages/**', 'aplib.net-demo/ProjectSettings/**') }}
- name: Build for ${{ matrix.targetPlatform }}, ${{ matrix.unity-version }}
uses: game-ci/unity-builder@v4
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
with:
targetPlatform: ${{ matrix.targetPlatform }}
unityVersion: ${{ matrix.unity-version }}
projectPath: aplib.net-demo
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.targetPlatform }}-${{ matrix.unity-version }}
path: build
create-release:
name: Create release
needs: build
runs-on: ubuntu-latest
permissions:
contents: write # To be able to publish a GitHub Release
issues: write # To be able to comment on related issues
pull-requests: write # To be able to comment on released pull requests
# id-token: write # To enable use of OIDC for npm provenance
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Install Semantic Release
run: npm install semantic-release@23
- name: Install Semantic Release Dependencies
run: npm install @semantic-release/exec@6 @semantic-release/commit-analyzer@11 @semantic-release/release-notes-generator@12
- name: Create and Publish Release
id: create-release
run: |
npx semantic-release@23
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
upload-build:
name: Upload build for ${{ matrix.targetPlatform }}, ${{ matrix.unity-version }} to GitHub Release
needs: create-release
runs-on: ubuntu-latest
permissions: write-all
strategy:
matrix:
unity-version:
- 2022.3.19f1
targetPlatform:
- StandaloneOSX
- StandaloneWindows64
- StandaloneLinux64
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Retrieve build from artifact
uses: actions/download-artifact@v4
with:
name: build-${{ matrix.targetPlatform }}-${{ matrix.unity-version }}
path: build
- name: Get Latest Tag
id: previoustag
uses: WyriHaximus/[email protected]
with:
fallback: v1.0.0
- name: Zip build
run: zip -r build-${{ matrix.targetPlatform }}-${{ matrix.unity-version }}.zip build
- name: Upload build to release
uses: softprops/action-gh-release@v2
with:
files: build-${{ matrix.targetPlatform }}-${{ matrix.unity-version }}.zip
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: ${{ steps.previoustag.outputs.tag }}
append_body: true
build-webgl:
name: Build for WebGL, 2022.3.19f1
needs: [unity-test]
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
lfs: true
- name: Cache Dependencies
uses: actions/cache@v4
with:
path: ./aplib.net-demo/Library
key: Library-${{ hashFiles('aplib.net-demo/Assets/**', 'aplib.net-demo/Packages/**', 'aplib.net-demo/ProjectSettings/**') }}
restore-keys: |
Library-${{ hashFiles('aplib.net-demo/Assets/**', 'aplib.net-demo/Packages/**', 'aplib.net-demo/ProjectSettings/**') }}
- name: Build for WebGL, 2022.3.19f1
uses: game-ci/unity-builder@v4
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
with:
targetPlatform: WebGL
unityVersion: 2022.3.19f1
projectPath: aplib.net-demo
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: build-WebGL-2022.3.19f1
path: build
upload-to-gh-pages:
name: Upload to GitHub Pages
needs: build-webgl
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Retrieve build from artifact
uses: actions/download-artifact@v4
with:
name: build-WebGL-2022.3.19f1
path: build
- name: Push to gh-pages branch
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: build/WebGL/WebGL