generated from vrchat-community/template-package
-
Notifications
You must be signed in to change notification settings - Fork 22
155 lines (137 loc) · 5.4 KB
/
gameci.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
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
# MIT License
#
# Copyright (c) 2022 anatawa12
# Copyright (c) 2022 bd_
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
name: GameCI
on:
push:
branches: [dev, ci]
# This is a bit of a radioactive event; we need to be very careful with what permissions
# we assign this action, as we're allowing arbitrary code execution with the context of
# whatever permissions we assign.
pull_request_target: {}
workflow_dispatch: {}
workflow_call:
secrets:
UNITY_LICENSE:
required: true
# pull_request_target grants access to a privileged GITHUB_TOKEN by default, revoke this
permissions: {}
jobs:
build-and-test:
name: Unit tests
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
#unity_version: [ auto, 2022.3.5f1 ]
unity_version: [ 2022.3.6f1 ]
sdk: [ vrcsdk ]
experimental: [ false ]
include:
- unity_version: 2022.3.6f1
sdk: standalone
experimental: true
runs-on: ubuntu-latest
permissions:
checks: write
contents: read
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- run: |
sudo apt-get -y install libxml2-utils # xmllint
- id: prepare-project
name: Prepare project
run: |
mkdir .github/ProjectRoot/Packages/nadena.dev.ndmf -p
mv [^P]* .github/ProjectRoot/Packages/nadena.dev.ndmf
mv .github/ProjectRoot/* .
mv 'Packages/nadena.dev.ndmf/UnitTests~' 'Packages/nadena.dev.ndmf/UnitTests'
for i in packages-lock manifest vpm-manifest; do
if [ -e "$i-${{ matrix.unity_version }}.json" ]; then
mv "$i-${{ matrix.unity_version }}.json" Packages/$i.json -v
fi
done
- id: symlink-deps
if: ${{ matrix.sdk != 'vrcsdk' }}
name: Symlink dependencies
run: |
cd Packages/nadena.dev.ndmf
ln -s 'Dependencies~' Dependencies
- uses: anatawa12/sh-actions/setup-vrc-get@master
if: ${{ matrix.sdk == 'vrcsdk' }}
- name: Resolve packages
if: ${{ matrix.sdk == 'vrcsdk' }}
run: |
vrc-get resolve --project .
vrc-get info project --project .
- name: "Debug: List project contents"
run: |
ls -lR
ls -lR Packages/nadena*
- uses: actions/cache@v4
with:
path: Library
key: Library-${{ matrix.unity_version }}-${{ matrix.sdk }}
restore-keys: Library-
- uses: game-ci/unity-test-runner@v3
id: gameci
env:
# meh, just a personal license...
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
with:
testMode: EditMode
unityVersion: ${{ matrix.unity_version }}
githubToken: ${{ github.token }}
coverageOptions: generateAdditionalMetrics;generateHtmlReport;generateBadgeReport;assemblyFilters:+nadena.dev.*
customParameters: -nographics -assemblyNames nadena.dev.ndmf.UnitTests
checkName: ${{ steps.setup.outputs.check_name }}
- name: "Debug: List project contents"
if: '!cancelled()'
run: |
ls -lR
ls -lR Packages/nadena*
- name: List compile errors
continue-on-error: true
if: failure()
run: |
perl -ne '$out = 0 if /^#####|^-----EndCompilerOutput/; $out = 1 if /^##### Output|^-----CompilerOutput/; print if $out;' ${{ steps.gameci.outputs.artifactsPath }}/editmode.log
- name: List test failures
continue-on-error: true
if: failure()
run: |
if [ -e ${{ steps.gameci.outputs.artifactsPath }}/editmode-results.xml ]; then
xmllint --pretty 2 --nocompact --xpath '//test-case[@result!="Passed"]' ${{ steps.gameci.outputs.artifactsPath }}/editmode-results.xml
fi
- uses: actions/upload-artifact@v4
if: '!cancelled()'
continue-on-error: true
with:
name: Coverage results ${{ matrix.unity_version }} ${{ matrix.sdk }}
path: ${{ steps.gameci.outputs.coveragePath }}
- uses: actions/upload-artifact@v4
if: '!cancelled()'
continue-on-error: true
with:
name: Test results for ${{ matrix.unity_version }} ${{ matrix.sdk }}
path: ${{ steps.gameci.outputs.artifactsPath }}