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:
|
2024-07-24 16:22:28 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-07-26 12:10:40 +08:00
|
|
|
- uses: Cysharp/Actions/.github/actions/setup-dotnet@main
|
|
|
|
- run: dotnet build -c Debug
|
|
|
|
- run: dotnet test -c Debug
|
2020-05-17 01:43:54 +08:00
|
|
|
|
|
|
|
build-unity:
|
2024-04-17 15:09:55 +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:
|
2024-07-24 16:44:49 +08:00
|
|
|
fail-fast: false
|
2020-05-17 01:43:54 +08:00
|
|
|
matrix:
|
2024-07-24 17:59:07 +08:00
|
|
|
unity: ["2021.3.41f1", "2022.3.38f1", "6000.0.11f1"] # Test with LTS
|
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:
|
2024-04-17 15:09:55 +08:00
|
|
|
- name: Load secrets
|
|
|
|
id: op-load-secret
|
|
|
|
uses: 1password/load-secrets-action@v2
|
|
|
|
with:
|
|
|
|
export-env: false
|
|
|
|
env:
|
|
|
|
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN_PUBLIC }}
|
|
|
|
UNITY_EMAIL: "op://GitHubActionsPublic/UNITY_LICENSE/username"
|
|
|
|
UNITY_PASSWORD: "op://GitHubActionsPublic/UNITY_LICENSE/credential"
|
|
|
|
UNITY_SERIAL: "op://GitHubActionsPublic/UNITY_LICENSE/serial"
|
|
|
|
|
2024-07-24 16:22:28 +08:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
2024-07-24 16:24:01 +08:00
|
|
|
# Execute Unittest
|
|
|
|
# /opt/Unity/Editor/Unity -quit -batchmode -nographics -silent-crashes -logFile -projectPath . -executeMethod UnitTestBuilder.BuildUnitTest /headless /ScriptBackend IL2CPP /BuildTarget StandaloneLinux64
|
|
|
|
- name: Build UnitTest
|
2023-04-25 18:39:40 +08:00
|
|
|
uses: Cysharp/Actions/.github/actions/unity-builder@main
|
2021-02-08 14:54:07 +08:00
|
|
|
env:
|
2024-04-17 15:09:55 +08:00
|
|
|
UNITY_EMAIL: ${{ steps.op-load-secret.outputs.UNITY_EMAIL }}
|
|
|
|
UNITY_PASSWORD: ${{ steps.op-load-secret.outputs.UNITY_PASSWORD }}
|
|
|
|
UNITY_SERIAL: ${{ steps.op-load-secret.outputs.UNITY_SERIAL }}
|
2021-02-08 14:54:07 +08:00
|
|
|
with:
|
|
|
|
projectPath: src/UniTask
|
|
|
|
unityVersion: ${{ matrix.unity }}
|
|
|
|
targetPlatform: StandaloneLinux64
|
|
|
|
buildMethod: UnitTestBuilder.BuildUnitTest
|
2024-07-24 16:24:01 +08:00
|
|
|
customParameters: "/headless /ScriptBackend IL2CPP"
|
|
|
|
- name: Check UnitTest file is generated
|
|
|
|
run: ls -lR ./src/UniTask/bin/UnitTest
|
2020-05-17 01:43:54 +08:00
|
|
|
- name: Execute UnitTest
|
2024-07-24 16:24:01 +08:00
|
|
|
run: ./src/UniTask/bin/UnitTest/StandaloneLinux64_IL2CPP/test
|
2020-05-17 01:43:54 +08:00
|
|
|
|
|
|
|
# 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
|
2023-04-25 18:39:40 +08:00
|
|
|
- name: Build Unity (.unitypacakge)
|
|
|
|
uses: Cysharp/Actions/.github/actions/unity-builder@main
|
2021-02-08 14:54:07 +08:00
|
|
|
env:
|
2024-04-17 15:09:55 +08:00
|
|
|
UNITY_EMAIL: ${{ steps.op-load-secret.outputs.UNITY_EMAIL }}
|
|
|
|
UNITY_PASSWORD: ${{ steps.op-load-secret.outputs.UNITY_PASSWORD }}
|
|
|
|
UNITY_SERIAL: ${{ steps.op-load-secret.outputs.UNITY_SERIAL }}
|
2021-02-08 14:54:07 +08:00
|
|
|
with:
|
|
|
|
projectPath: src/UniTask
|
|
|
|
unityVersion: ${{ matrix.unity }}
|
|
|
|
targetPlatform: StandaloneLinux64
|
|
|
|
buildMethod: PackageExporter.Export
|
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.
|
2024-04-30 11:43:17 +08:00
|
|
|
- uses: Cysharp/Actions/.github/actions/upload-artifact@main
|
2020-05-17 01:43:54 +08:00
|
|
|
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
|
2024-04-30 13:06:49 +08:00
|
|
|
retention-days: 1
|
2024-07-24 19:07:48 +08:00
|
|
|
|
|
|
|
- uses: Cysharp/Actions/.github/actions/upload-artifact@main
|
|
|
|
if: always()
|
|
|
|
with:
|
|
|
|
name: StandaloneLinux64_IL2CPP.${{ matrix.unity}}.test.zip
|
|
|
|
path: ./src/UniTask/bin/UnitTest/StandaloneLinux64_IL2CPP/test/
|
|
|
|
retention-days: 1
|