mirror of
https://github.com/MobileTooling/Ffu2Vhdx.git
synced 2026-07-27 12:48:20 -07:00
63 lines
2.1 KiB
YAML
63 lines
2.1 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
strategy:
|
|
matrix:
|
|
target: [win-x86,win-x64,win-arm64]
|
|
include:
|
|
- target: win-x86
|
|
platform: win
|
|
architecture: x86
|
|
- target: win-x64
|
|
platform: win
|
|
architecture: x64
|
|
- target: win-arm64
|
|
platform: win
|
|
architecture: arm64
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4.1.1
|
|
|
|
- name: Install .NET SDK
|
|
uses: actions/setup-dotnet@v4.0.0
|
|
with:
|
|
dotnet-version: "8.0.x"
|
|
|
|
- name: Add MSBuild to PATH
|
|
uses: microsoft/setup-msbuild@v1.3.1
|
|
|
|
- name: Build utilities
|
|
shell: pwsh
|
|
run: |
|
|
msbuild /m /t:restore,ffu2vhdx: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=false /p:Configuration=Release Ffu2Vhdx.sln
|
|
|
|
- name: Create PDB Output Directory
|
|
shell: pwsh
|
|
run: |
|
|
mkdir ${{ github.workspace }}\artifacts\${{ matrix.platform }}-${{ matrix.architecture }}\PDBs
|
|
|
|
- name: Move PDBs
|
|
shell: pwsh
|
|
run: |
|
|
move ${{ github.workspace }}\artifacts\${{ matrix.platform }}-${{ matrix.architecture }}\*.pdb ${{ github.workspace }}\artifacts\${{ matrix.platform }}-${{ matrix.architecture }}\PDBs\
|
|
|
|
- name: Upload artifact (Binaries)
|
|
uses: actions/upload-artifact@v3.1.3
|
|
with:
|
|
name: ${{ matrix.platform }}-${{ matrix.architecture }}-binaries
|
|
path: ${{ github.workspace }}/artifacts/${{ matrix.platform }}-${{ matrix.architecture }}
|
|
|
|
- name: Upload artifact (Symbols)
|
|
uses: actions/upload-artifact@v3.1.3
|
|
with:
|
|
name: ${{ matrix.platform }}-${{ matrix.architecture }}-symbols
|
|
path: ${{ github.workspace }}/artifacts/${{ matrix.platform }}-${{ matrix.architecture }}\PDBs |