Bump msquic from 3d70aa9
to 0576776
#38
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: OneBranch-Style Build | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
permissions: read-all | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
arch: [x64, arm64] | |
name: Build | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b | |
with: | |
submodules: 'recursive' | |
- name: Setup MSBuild | |
uses: microsoft/setup-msbuild@6fb02220983dee41ce7ae257b6f4d8f9bf5ed4ce | |
- name: Pre-Build | |
shell: pwsh | |
run: ./.azure/pre-build.ps1 -Arch ${{ matrix.arch }} | |
- name: Build | |
run: msbuild ./build/ALL_BUILD.vcxproj /p:Configuration=Release /p:Platform=${{ matrix.arch }} | |
- name: Post-Build | |
shell: pwsh | |
run: ./.azure/post-build.ps1 -Arch ${{ matrix.arch }} | |
- name: Upload | |
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 | |
with: | |
name: bin-windows-${{ matrix.arch }} | |
path: | | |
build/bin/**/*.so | |
build/bin/**/*.dll | |
build/bin/**/quicreach | |
build/bin/**/quicreach.exe | |
build/bin/**/quicreach.msi |