Bump actions/checkout from 3.6.0 to 4.0.0 #63
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Plugins | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- .github/workflows/plugins.yml | |
- src/plugins/* | |
pull_request: | |
branches: [ main ] | |
paths: | |
- .github/workflows/plugins.yml | |
- src/plugins/* | |
permissions: read-all | |
jobs: | |
build_dbgext: | |
name: Build WinDbg Extension | |
runs-on: windows-2019 # TODO - Need to figure out why -2022 doesn't have the prerequisites | |
strategy: | |
fail-fast: false | |
matrix: | |
configuration: [Release, Debug] | |
platform: [x86, x64] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac | |
- name: Setup MSBuild.exe | |
uses: microsoft/setup-msbuild@1ff57057b5cfdc39105cd07a01d78e9b0ea0c14c | |
- name: Build | |
run: msbuild src\plugins\msquic.windbg.sln /p:configuration=${{ matrix.configuration }} /p:platform=${{ matrix.platform }} | |
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce | |
with: | |
name: bin_windbg_${{ matrix.configuration }}_${{ matrix.platform }} | |
path: | | |
artifacts/bin | |
!artifacts/bin/**/*.ilk | |
!artifacts/bin/**/*.exp | |
!artifacts/bin/**/*.lib | |
build_quictrace: | |
name: Build QuicTrace | |
needs: [] | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
configuration: [Release, Debug] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac | |
- name: Setup .NET | |
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 | |
with: | |
dotnet-version: 6.0.x | |
- name: Build | |
run: dotnet build src\plugins\QuicTrace.sln -c ${{ matrix.configuration }} | |
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce | |
with: | |
name: bin_quictrace_${{ matrix.configuration }} | |
path: artifacts/bin |