-
Notifications
You must be signed in to change notification settings - Fork 40
57 lines (51 loc) · 1.98 KB
/
test-runner_dispatch.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
name: Test Runner Custom Version
on:
workflow_dispatch:
inputs:
unityVersion:
description: 'Unity version'
required: true
default: '2023.2.18f1'
jobs:
test:
name: Test-${{ matrix.testMode }}-${{ matrix.unityVersion }}
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
testMode: editmode
unityVersion: ${{fromJson(github.event.inputs.unityVersion)}}
steps:
#Test Checkout
- uses: actions/checkout@v4.1.4
with:
lfs: true
#Test Cache
- uses: actions/cache@v4.0.2
with:
path: Library
key: Library-${{ matrix.unityVersion }}
restore-keys:
Library-${{ matrix.unityVersion }}
#Test Runner
- uses: game-ci/unity-test-runner@v4.1.1
id: tests
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
with:
projectPath: ${{ matrix.projectPath }}
testMode: ${{ matrix.testMode }}
artifactsPath: ${{ matrix.testMode }}-artifacts
githubToken: ${{ secrets.GITHUB_TOKEN }}
checkName: Test results ${{ matrix.testMode }}-${{ matrix.unityVersion }}
unityVersion: ${{ matrix.unityVersion }}
customParameters: '-nographics'
#Test Artifact
- uses: actions/upload-artifact@v4.3.3
if: always()
with:
name: Test results for ${{ matrix.testMode }}-${{ matrix.unityVersion }}
path: ${{ steps.tests.outputs.artifactsPath }}