Skip to content

Merge pull request #2 from RedGreenBlue09/crashfix #8

Merge pull request #2 from RedGreenBlue09/crashfix

Merge pull request #2 from RedGreenBlue09/crashfix #8

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
architecture: [x86, x64, arm64]
platform: [win]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install .NET SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: "6.0.x"
- name: Add MSBuild to PATH
uses: microsoft/[email protected]
- name: Build utilities
shell: pwsh
run: |
msbuild /m /t:restore,getlumiabsp:publish /p:Platform=${{ matrix.architecture }} /p:RuntimeIdentifier=${{ matrix.platform }}-${{ matrix.architecture }} /p:PublishDir=${{ github.workspace }}/artifacts/${{ matrix.platform }}-${{ matrix.architecture }} /p:PublishSingleFile=true /p:PublishTrimmed=true GetLumiaBSP.sln
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.platform }}-${{ matrix.architecture }}
path: ${{ github.workspace }}/artifacts/${{ matrix.platform }}-${{ matrix.architecture }}