-
-
Notifications
You must be signed in to change notification settings - Fork 74
67 lines (62 loc) · 1.9 KB
/
test-main-game.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
name: Test Main Game
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch: {}
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
PROJECT_PATH: UltraStar Play
jobs:
test-job:
name: Test for ${{ matrix.targetPlatform }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
unityVersion:
- 2023.2.12f1
targetPlatform:
# At the moment, tests are target platform independent. Thus only build one.
- StandaloneWindows64
steps:
# Clone repo and restore cache
- uses: actions/checkout@v4
with:
fetch-depth: 0
lfs: true
- uses: actions/cache@v4
with:
path: ${{ env.PROJECT_PATH }}/Library
key: Library-${{ env.PROJECT_PATH }}-${{ matrix.targetPlatform }}-${{ hashFiles(env.PROJECT_PATH) }}
restore-keys: |
Library-${{ env.PROJECT_PATH }}-${{ matrix.targetPlatform }}-
Library-${{ env.PROJECT_PATH }}-
Library-
# Run setup script
- name: Setup Script
working-directory: tools
run: sh setup.sh
# Test Unity project
- uses: game-ci/unity-test-runner@v4
id: testRunner
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
with:
projectPath: ${{ env.PROJECT_PATH }}
unityVersion: ${{ matrix.unityVersion }}
testMode: all
githubToken: ${{ secrets.GITHUB_TOKEN }}
customParameters: "-nographics"
- uses: actions/upload-artifact@v4
if: always()
with:
name: Test results (all modes)
path: ${{ steps.testRunner.outputs.artifactsPath }}