Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
163c42c999 | |||
24e6a73eb9 | |||
02ddb73665 |
@ -29,65 +29,65 @@ jobs:
|
||||
PRERELEASE: false
|
||||
INITIAL_VERSION: 0.1.0
|
||||
|
||||
Test:
|
||||
name: Test
|
||||
runs-on: unity
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
testMode:
|
||||
- playmode
|
||||
- editmode
|
||||
- standalone
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
lfs: true
|
||||
|
||||
# Cache
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
path: Library
|
||||
key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
|
||||
restore-keys: |
|
||||
Library-
|
||||
|
||||
# Test
|
||||
- name: Run tests
|
||||
uses: game-ci/unity-test-runner@v4
|
||||
id: tests
|
||||
env:
|
||||
UNITY_LICENSE: ${{ secrets.UNITYLICENSE }}
|
||||
UNITY_EMAIL: ${{ secrets.UNITYEMAIL }}
|
||||
UNITY_PASSWORD: ${{ secrets.UNITYPASSWORD }}
|
||||
with:
|
||||
useHostNetwork: true
|
||||
unityVersion: 2022.3.42f1
|
||||
customImage: 'unityci/editor:ubuntu-2022.3.42f1-linux-il2cpp-3'
|
||||
dockerCpuLimit: 4
|
||||
dockerMemoryLimit: 8g
|
||||
testMode: ${{ matrix.testMode }}
|
||||
artifactsPath: ${{ matrix.testMode }}-artifacts
|
||||
checkName: ${{ matrix.testMode }} Test Results
|
||||
customParameters: -testCategory "!AltTester"
|
||||
- name: Upload test results
|
||||
uses: actions/upload-artifact@v3
|
||||
if: always()
|
||||
with:
|
||||
name: Test results for ${{ matrix.testMode }}
|
||||
path: ${{ steps.tests.outputs.artifactsPath }}
|
||||
- name: Upload test coverage
|
||||
uses: actions/upload-artifact@v3
|
||||
if: always()
|
||||
with:
|
||||
name: Coverage results for ${{ matrix.testMode }}
|
||||
path: ${{ steps.tests.outputs.coveragePath }}
|
||||
# Test:
|
||||
# name: Test
|
||||
# runs-on: unity
|
||||
# strategy:
|
||||
# fail-fast: false
|
||||
# matrix:
|
||||
# testMode:
|
||||
# - playmode
|
||||
# - editmode
|
||||
# - standalone
|
||||
#
|
||||
# steps:
|
||||
# - name: Checkout with LFS
|
||||
# uses: https://git.game-dev.space/minimata/checkout-lfs.git@main
|
||||
# with:
|
||||
# checkout-version: 4
|
||||
#
|
||||
# # Cache
|
||||
# - uses: actions/cache@v4
|
||||
# with:
|
||||
# path: Library
|
||||
# key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
|
||||
# restore-keys: |
|
||||
# Library-
|
||||
#
|
||||
# # Test
|
||||
# - name: Run tests
|
||||
# uses: game-ci/unity-test-runner@v4
|
||||
# id: tests
|
||||
# env:
|
||||
# UNITY_LICENSE: ${{ secrets.UNITYLICENSE }}
|
||||
# UNITY_EMAIL: ${{ secrets.UNITYEMAIL }}
|
||||
# UNITY_PASSWORD: ${{ secrets.UNITYPASSWORD }}
|
||||
# with:
|
||||
# useHostNetwork: true
|
||||
# unityVersion: 2022.3.42f1
|
||||
# customImage: 'unityci/editor:ubuntu-2022.3.42f1-linux-il2cpp-3'
|
||||
# dockerCpuLimit: 4
|
||||
# dockerMemoryLimit: 8g
|
||||
# testMode: ${{ matrix.testMode }}
|
||||
# artifactsPath: ${{ matrix.testMode }}-artifacts
|
||||
# checkName: ${{ matrix.testMode }} Test Results
|
||||
# customParameters: -testCategory "!AltTester"
|
||||
# - name: Upload test results
|
||||
# uses: actions/upload-artifact@v3
|
||||
# if: always()
|
||||
# with:
|
||||
# name: Test results for ${{ matrix.testMode }}
|
||||
# path: ${{ steps.tests.outputs.artifactsPath }}
|
||||
# - name: Upload test coverage
|
||||
# uses: actions/upload-artifact@v3
|
||||
# if: always()
|
||||
# with:
|
||||
# name: Coverage results for ${{ matrix.testMode }}
|
||||
# path: ${{ steps.tests.outputs.coveragePath }}
|
||||
|
||||
Build:
|
||||
name: Build
|
||||
needs: Test
|
||||
# needs: Test
|
||||
runs-on: unity
|
||||
strategy:
|
||||
fail-fast: false
|
||||
@ -98,13 +98,13 @@ jobs:
|
||||
- StandaloneWindows # Build a Windows 64-bit standalone.
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Checkout with LFS
|
||||
uses: https://git.game-dev.space/minimata/checkout-lfs.git@main
|
||||
with:
|
||||
lfs: true
|
||||
checkout-version: 4
|
||||
|
||||
# Cache
|
||||
- uses: actions/cache@v3
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
path: Library
|
||||
key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
|
||||
|
@ -5,13 +5,10 @@
|
||||
"com.unity.ide.rider": "3.0.36",
|
||||
"com.unity.ide.visualstudio": "2.0.23",
|
||||
"com.unity.inputsystem": "1.14.0",
|
||||
"com.unity.multiplayer.center": "1.0.0",
|
||||
"com.unity.render-pipelines.universal": "17.1.0",
|
||||
"com.unity.test-framework": "1.5.1",
|
||||
"com.unity.timeline": "1.8.7",
|
||||
"com.unity.ugui": "2.0.0",
|
||||
"com.unity.visualscripting": "1.9.7",
|
||||
"com.unity.modules.accessibility": "1.0.0",
|
||||
"com.unity.modules.ai": "1.0.0",
|
||||
"com.unity.modules.androidjni": "1.0.0",
|
||||
"com.unity.modules.animation": "1.0.0",
|
||||
|
@ -32,8 +32,8 @@
|
||||
"source": "registry",
|
||||
"dependencies": {
|
||||
"com.unity.burst": "1.8.17",
|
||||
"com.unity.nuget.mono-cecil": "1.11.4",
|
||||
"com.unity.test-framework": "1.4.5",
|
||||
"com.unity.nuget.mono-cecil": "1.11.4",
|
||||
"com.unity.test-framework.performance": "3.0.3"
|
||||
},
|
||||
"url": "https://packages.unity.com"
|
||||
@ -78,14 +78,6 @@
|
||||
"dependencies": {},
|
||||
"url": "https://packages.unity.com"
|
||||
},
|
||||
"com.unity.multiplayer.center": {
|
||||
"version": "1.0.0",
|
||||
"depth": 0,
|
||||
"source": "builtin",
|
||||
"dependencies": {
|
||||
"com.unity.modules.uielements": "1.0.0"
|
||||
}
|
||||
},
|
||||
"com.unity.nuget.mono-cecil": {
|
||||
"version": "1.11.4",
|
||||
"depth": 3,
|
||||
@ -154,7 +146,7 @@
|
||||
},
|
||||
"com.unity.test-framework": {
|
||||
"version": "1.5.1",
|
||||
"depth": 0,
|
||||
"depth": 1,
|
||||
"source": "builtin",
|
||||
"dependencies": {
|
||||
"com.unity.ext.nunit": "2.0.3",
|
||||
@ -177,9 +169,9 @@
|
||||
"depth": 0,
|
||||
"source": "registry",
|
||||
"dependencies": {
|
||||
"com.unity.modules.audio": "1.0.0",
|
||||
"com.unity.modules.director": "1.0.0",
|
||||
"com.unity.modules.animation": "1.0.0",
|
||||
"com.unity.modules.audio": "1.0.0",
|
||||
"com.unity.modules.particlesystem": "1.0.0"
|
||||
},
|
||||
"url": "https://packages.unity.com"
|
||||
@ -203,12 +195,6 @@
|
||||
},
|
||||
"url": "https://packages.unity.com"
|
||||
},
|
||||
"com.unity.modules.accessibility": {
|
||||
"version": "1.0.0",
|
||||
"depth": 0,
|
||||
"source": "builtin",
|
||||
"dependencies": {}
|
||||
},
|
||||
"com.unity.modules.ai": {
|
||||
"version": "1.0.0",
|
||||
"depth": 0,
|
||||
|
Reference in New Issue
Block a user