Skip to content

extremely basic frame advancing #592

extremely basic frame advancing

extremely basic frame advancing #592

Workflow file for this run

name: build-on-push
on: [ push ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest, ubuntu-latest ]
configuration: [ Debug, Release ]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: '6.0.x'
- name: Setup FFmpeg
uses: FedericoCarboni/setup-ffmpeg@v2
- name: Tests
working-directory: ./UniTAS
run: dotnet test --configuration ${{ matrix.configuration }}
- name: Build windows
if: runner.os == 'Windows'
run: ./build.ps1 ${{ matrix.configuration }}
- name: Build linux
if: runner.os == 'Linux'
run: ./build.sh ${{ matrix.configuration }}
- name: Get built artifacts
uses: actions/[email protected]
with:
name: ${{ matrix.os }}-${{ matrix.configuration }}
path: ./build/${{ matrix.configuration }}/