UniTask/.github/workflows/build-debug.yml

86 lines
3.2 KiB
YAML
Raw Normal View History

2020-05-17 01:43:54 +08:00
name: Build-Debug
on:
push:
branches:
- "master"
2020-05-17 01:43:54 +08:00
pull_request:
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:
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
2024-07-30 13:25:31 +08:00
timeout-minutes: 20
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
uses: Cysharp/Actions/.github/actions/unity-builder@main
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 }}
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
- name: Build Unity (.unitypacakge)
uses: Cysharp/Actions/.github/actions/unity-builder@main
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 }}
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
# Store artifacts.
- uses: Cysharp/Actions/.github/actions/upload-artifact@main
2020-05-17 01:43:54 +08:00
with:
name: UniTask.unitypackage-${{ matrix.unity }}.zip
path: ./src/UniTask/*.unitypackage
retention-days: 1