2020-05-17 01:43:54 +08:00
|
|
|
name: Build-Debug
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2020-10-14 11:12:28 +08:00
|
|
|
- "master"
|
2020-05-17 01:43:54 +08:00
|
|
|
pull_request:
|
2021-02-04 02:01:21 +08:00
|
|
|
branches:
|
|
|
|
- "master"
|
2020-05-17 01:43:54 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-dotnet:
|
|
|
|
runs-on: ubuntu-latest
|
2022-07-26 12:10:40 +08:00
|
|
|
timeout-minutes: 10
|
2020-05-17 01:43:54 +08:00
|
|
|
steps:
|
2022-07-26 12:10:40 +08:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: Cysharp/Actions/.github/actions/setup-dotnet@main
|
|
|
|
with:
|
|
|
|
dotnet-version: |
|
|
|
|
3.1.x
|
|
|
|
6.0.x
|
|
|
|
- run: dotnet build -c Debug
|
|
|
|
- run: dotnet test -c Debug
|
2020-05-17 01:43:54 +08:00
|
|
|
|
|
|
|
build-unity:
|
2021-04-19 17:47:10 +08:00
|
|
|
if: "((github.event_name == 'push' && github.repository_owner == 'Cysharp') || startsWith(github.event.pull_request.head.label, 'Cysharp:'))"
|
2020-05-17 01:43:54 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-02-08 14:54:07 +08:00
|
|
|
unity: ["2019.3.9f1", "2019.4.13f1", "2020.1.12f1"]
|
2020-05-17 01:43:54 +08:00
|
|
|
include:
|
|
|
|
- unity: 2019.3.9f1
|
2021-02-08 14:54:07 +08:00
|
|
|
license: UNITY_LICENSE_2019
|
|
|
|
- unity: 2019.4.13f1
|
|
|
|
license: UNITY_LICENSE_2019
|
2021-02-08 10:29:39 +08:00
|
|
|
- unity: 2020.1.12f1
|
2021-02-08 14:54:07 +08:00
|
|
|
license: UNITY_LICENSE_2020
|
2020-05-17 01:43:54 +08:00
|
|
|
runs-on: ubuntu-latest
|
2022-07-26 12:10:40 +08:00
|
|
|
timeout-minutes: 15
|
2020-05-17 01:43:54 +08:00
|
|
|
steps:
|
2022-07-26 14:34:50 +08:00
|
|
|
- uses: actions/checkout@v3
|
2020-05-17 01:43:54 +08:00
|
|
|
# Execute scripts: RuntimeUnitTestToolkit
|
2021-02-08 15:53:46 +08:00
|
|
|
# /opt/Unity/Editor/Unity -quit -batchmode -nographics -silent-crashes -logFile -projectPath . -executeMethod UnitTestBuilder.BuildUnitTest /headless /ScriptBackend mono /BuildTarget StandaloneLinux64
|
2020-05-17 01:43:54 +08:00
|
|
|
- name: Build UnitTest(Linux64, mono)
|
2022-07-26 12:10:40 +08:00
|
|
|
uses: game-ci/unity-builder@v2
|
2021-02-08 14:54:07 +08:00
|
|
|
env:
|
|
|
|
UNITY_LICENSE: ${{ secrets[matrix.license] }}
|
|
|
|
with:
|
|
|
|
projectPath: src/UniTask
|
|
|
|
unityVersion: ${{ matrix.unity }}
|
|
|
|
targetPlatform: StandaloneLinux64
|
|
|
|
buildMethod: UnitTestBuilder.BuildUnitTest
|
|
|
|
customParameters: /headless /ScriptBackend mono
|
|
|
|
versioning: None
|
2020-05-17 01:43:54 +08:00
|
|
|
- name: Execute UnitTest
|
|
|
|
run: ./src/UniTask/bin/UnitTest/StandaloneLinux64_Mono2x/test
|
|
|
|
|
|
|
|
# Execute scripts: Export Package
|
2021-02-08 15:53:46 +08:00
|
|
|
# /opt/Unity/Editor/Unity -quit -batchmode -nographics -silent-crashes -logFile -projectPath . -executeMethod PackageExporter.Export
|
2020-05-17 01:43:54 +08:00
|
|
|
- name: Export unitypackage
|
2022-07-26 12:10:40 +08:00
|
|
|
uses: game-ci/unity-builder@v2
|
2021-02-08 14:54:07 +08:00
|
|
|
env:
|
|
|
|
UNITY_LICENSE: ${{ secrets[matrix.license] }}
|
|
|
|
with:
|
|
|
|
projectPath: src/UniTask
|
|
|
|
unityVersion: ${{ matrix.unity }}
|
|
|
|
targetPlatform: StandaloneLinux64
|
|
|
|
buildMethod: PackageExporter.Export
|
|
|
|
versioning: None
|
2020-05-17 01:43:54 +08:00
|
|
|
|
2022-07-26 12:10:40 +08:00
|
|
|
- uses: Cysharp/Actions/.github/actions/check-metas@main # check meta files
|
|
|
|
with:
|
|
|
|
directory: src/UniTask
|
2021-02-04 01:58:29 +08:00
|
|
|
|
2020-06-10 16:50:08 +08:00
|
|
|
# Store artifacts.
|
2020-05-17 01:43:54 +08:00
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2021-02-08 14:54:07 +08:00
|
|
|
name: UniTask.unitypackage-${{ matrix.unity }}.zip
|
2020-06-10 16:50:08 +08:00
|
|
|
path: ./src/UniTask/*.unitypackage
|