55 lines
1.7 KiB
YAML
55 lines
1.7 KiB
YAML
name: Build-Debug
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build-dotnet:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: Cysharp/Actions/.github/actions/setup-dotnet@main
|
|
- run: dotnet build ObservableCollection.WithoutSandbox.slnf -c Debug
|
|
- run: dotnet test ObservableCollection.WithoutSandbox.slnf -c Debug --no-build
|
|
|
|
build-unity:
|
|
if: "((github.event_name == 'push' && github.repository_owner == 'Cysharp') || startsWith(github.event.pull_request.head.label, 'Cysharp:'))"
|
|
strategy:
|
|
matrix:
|
|
unity: ["2019.4.25f1"]
|
|
include:
|
|
- unity: 2019.4.25f1
|
|
license: UNITY_LICENSE_2019
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
# Execute scripts: Export Package
|
|
# /opt/Unity/Editor/Unity -quit -batchmode -nographics -silent-crashes -logFile -projectPath . -executeMethod PackageExporter.Export
|
|
- name: Export unitypackage
|
|
uses: game-ci/unity-builder@v2
|
|
env:
|
|
UNITY_LICENSE: ${{ secrets[matrix.license] }}
|
|
with:
|
|
projectPath: src/ObservableCollections.Unity
|
|
unityVersion: ${{ matrix.unity }}
|
|
targetPlatform: StandaloneLinux64
|
|
buildMethod: PackageExporter.Export
|
|
versioning: None
|
|
|
|
- uses: Cysharp/Actions/.github/actions/check-metas@main # check meta files
|
|
with:
|
|
directory: src/ObservableCollections.Unity
|
|
|
|
# Store artifacts.
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ObservableCollections.unitypackage-${{ matrix.unity }}.zip
|
|
path: ./src/ObservableCollections.Unity/*.unitypackage
|