Files
Amalgam/.github/workflows/msbuild.yml
rei-kes baa13d7d08 A couple changes
Priority visuals
Fix bug related to doubletap
MSBuild now builds both non AVX2 and AVX2 versions
2024-05-27 15:31:48 -04:00

31 lines
802 B
YAML

name: MSBuild
on: [push, pull_request]
jobs:
msbuild:
runs-on: windows-latest
strategy:
matrix:
configuration: [Release, ReleaseAVX2]
platform: [x64]
steps:
- uses: actions/checkout@v4
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Restore NuGet packages
working-directory: ${{ env.GITHUB_WORKSPACE }}
run: nuget restore
- name: Build
working-directory: ${{ env.GITHUB_WORKSPACE }}
run: msbuild Amalgam.sln /p:Platform=${{ matrix.platform }} /p:Configuration=${{ matrix.configuration }}
- uses: actions/upload-artifact@v4
with:
name: Amalgam${{ matrix.platform }}${{ matrix.configuration }}
path: output/${{ matrix.platform }}/${{ matrix.configuration }}/*.dll