feat(DaedalusVm): implement transient instances #103
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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@v4' | |
| 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@v4' | |
| with: | |
| name: 'Managed DLL' | |
| path: 'Artifacts' |