Skip to content

fix(VirtualObject): don't return matrix as quaternion #39

fix(VirtualObject): don't return matrix as quaternion

fix(VirtualObject): don't return matrix as quaternion #39

Workflow file for this run

name: 'Build'
on:
- 'push'
jobs:
test:
strategy:
fail-fast: false
matrix:
system:
- 'windows-2019'
- 'ubuntu-latest'
runs-on: '${{matrix.system}}'
steps:
- uses: 'actions/checkout@v3'
- name: 'Setup .NET Core SDK'
uses: 'actions/setup-dotnet@v3'
with:
dotnet-version: '7.0.x'
- name: 'Test'
run: 'dotnet test -v minimal --filter "TestCategory!=Proprietary" -s Test.runsettings'
release:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3'
- name: 'Setup .NET Core SDK'
uses: 'actions/setup-dotnet@v3'
with:
dotnet-version: '7.0.x'
- name: 'Build'
run: 'dotnet build ZenKit -c Release -o __build && dotnet pack -c Release -o ./__publish/ -v detailed ZenKit'
- name: 'Publish'
uses: 'actions/upload-artifact@v3'
with:
name: 'NuGet Package'
path: '__publish'
- name: 'Copy Artifacts'
run: 'mkdir Artifacts && mv ZenKit/runtimes Artifacts/ && cp __build/ZenKit.dll Artifacts/ && echo "Copy the native library for your OS from the `runtime` folder into the same folder `ZenKit.dll` is in." > Artifacts/README.md'
- name: 'Publish'
uses: 'actions/upload-artifact@v3'
with:
name: 'Managed DLL'
path: 'Artifacts'