mirror of
https://github.com/rei-kes/Amalgam.git
synced 2025-06-28 02:12:27 +08:00

Priority visuals Fix bug related to doubletap MSBuild now builds both non AVX2 and AVX2 versions
31 lines
802 B
YAML
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 |