Bump ls-qpack from 778b53d
to 205e899
(#241)
#600
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: Build | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
concurrency: | |
# Cancel any workflow currently in progress for the same PR. | |
# Allow running concurrently with any other commits. | |
group: build-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
permissions: read-all | |
jobs: | |
build: | |
name: Build | |
permissions: | |
contents: read | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu, windows] | |
tls: [schannel, openssl, openssl3] | |
link: [static, shared] | |
config: [Debug, Release] | |
exclude: | |
- os: ubuntu | |
tls: schannel | |
runs-on: ${{ matrix.os }}-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f | |
with: | |
egress-policy: audit | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
with: | |
submodules: 'recursive' | |
- name: Install Perl | |
if: runner.os == 'Windows' | |
uses: shogo82148/actions-setup-perl@98dfedee230bcf1ee68d5b021931fc8d63f2016e | |
with: | |
perl-version: '5.34' | |
- name: Install NASM | |
if: runner.os == 'Windows' | |
uses: ilammy/setup-nasm@13cbeb366c45c4379d3478cdcbadd8295feb5028 | |
- name: Build | |
shell: pwsh | |
run: ./.github/workflows/build.ps1 -Config ${{ matrix.config }} -Tls ${{ matrix.tls }} -Link ${{ matrix.link }} -BuildId ${{ github.run_number }} -Suffix "-official" -WithTests -WithTools -Debug | |
- name: Upload | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 | |
with: | |
name: bin-${{ matrix.os }}-${{ matrix.tls }}-${{ matrix.link }}-${{ matrix.config }} | |
path: | | |
artifacts/*.dll | |
artifacts/*.exe | |
artifacts/*.pdb | |
artifacts/*.so | |
artifacts/msh3app | |
artifacts/msh3test | |
- name: msh3app | |
run: | | |
./artifacts/msh3app outlook.office.com | |
./artifacts/msh3app www.cloudflare.com | |
./artifacts/msh3app www.google.com | |
timeout-minutes: 1 | |
- name: msh3test | |
run: ./artifacts/msh3test | |
timeout-minutes: 1 | |
all-done: | |
name: Build Complete | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: No-op | |
shell: pwsh | |
run: Write-Host "All done!" |