зеркало из https://github.com/microsoft/msquic.git
Run Recv Fuzzing in Code Coverage (#3937)
Co-authored-by: Gaurav Singh <gauravsingh2699@gmail.com>
This commit is contained in:
Родитель
ee3da4ec01
Коммит
8e1eb1a74b
|
@ -131,9 +131,55 @@ jobs:
|
||||||
name: Spin-${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.xdp }}${{ matrix.vec.sanitize }}
|
name: Spin-${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.xdp }}${{ matrix.vec.sanitize }}
|
||||||
path: artifacts/coverage/*.cov
|
path: artifacts/coverage/*.cov
|
||||||
|
|
||||||
|
recvfuzz-winlatest:
|
||||||
|
name: Recv Fuzz WinPrerelease
|
||||||
|
needs: [build-windows]
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
vec: [
|
||||||
|
{ config: "Debug", plat: "windows", os: "windows-2022", arch: "x64", tls: "schannel", test: "-Test" },
|
||||||
|
]
|
||||||
|
runs-on:
|
||||||
|
- self-hosted
|
||||||
|
- "1ES.Pool=1es-msquic-pool"
|
||||||
|
- "1ES.ImageOverride=WSPrerelease"
|
||||||
|
env:
|
||||||
|
main-timeout: 3600000
|
||||||
|
pr-timeout: 600000
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a
|
||||||
|
with:
|
||||||
|
name: ${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.sanitize }}${{ matrix.vec.test }}
|
||||||
|
path: artifacts
|
||||||
|
- name: Prepare Machine
|
||||||
|
run: scripts/prepare-machine.ps1 -Tls ${{ matrix.vec.tls }} -ForTest ${{ matrix.vec.xdp }} -InstallCodeCoverage
|
||||||
|
shell: pwsh
|
||||||
|
- name: recvfuzz (PR)
|
||||||
|
if: github.event_name == 'pull_request'
|
||||||
|
timeout-minutes: 15
|
||||||
|
continue-on-error: true
|
||||||
|
shell: pwsh
|
||||||
|
run: scripts/recvfuzz.ps1 -Config ${{ matrix.vec.config }} -Arch ${{ matrix.vec.arch }} -Tls ${{ matrix.vec.tls }} -timeout ${{ env.pr-timeout }} ${{ matrix.vec.xdp }} -CodeCoverage -LogProfile Basic.Light
|
||||||
|
- name: recvfuzz (Official)
|
||||||
|
if: github.event_name != 'pull_request'
|
||||||
|
timeout-minutes: 65
|
||||||
|
continue-on-error: true
|
||||||
|
shell: pwsh
|
||||||
|
run: scripts/recvfuzz.ps1 -Config ${{ matrix.vec.config }} -Arch ${{ matrix.vec.arch }} -Tls ${{ matrix.vec.tls }} -timeout ${{ env.main-timeout }} ${{ matrix.vec.xdp }} -CodeCoverage -LogProfile Basic.Light
|
||||||
|
- name: Upload Results
|
||||||
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32
|
||||||
|
with:
|
||||||
|
name: RecvFuzz-${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.xdp }}${{ matrix.vec.sanitize }}
|
||||||
|
path: artifacts/coverage/*.cov
|
||||||
|
|
||||||
merge-coverage:
|
merge-coverage:
|
||||||
name: Merge Coverage
|
name: Merge Coverage
|
||||||
needs: [bvt-winlatest, stress-winlatest]
|
needs: [bvt-winlatest, stress-winlatest, recvfuzz-winlatest]
|
||||||
runs-on: windows-2022
|
runs-on: windows-2022
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
@ -157,6 +203,11 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: Spin-Debug-windows-windows-2022-x64-schannel
|
name: Spin-Debug-windows-windows-2022-x64-schannel
|
||||||
path: artifacts\coverage\windows\x64_Debug_schannel
|
path: artifacts\coverage\windows\x64_Debug_schannel
|
||||||
|
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a
|
||||||
|
name: Download RecvFuzz Coverage Results
|
||||||
|
with:
|
||||||
|
name: RecvFuzz-Debug-windows-windows-2022-x64-schannel
|
||||||
|
path: artifacts\coverage\windows\x64_Debug_schannel
|
||||||
- name: Dir Folder for Artifacts
|
- name: Dir Folder for Artifacts
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: |
|
run: |
|
||||||
|
@ -194,4 +245,3 @@ jobs:
|
||||||
output: 'both'
|
output: 'both'
|
||||||
- name: Write to Job Summary
|
- name: Write to Job Summary
|
||||||
run: cat code-coverage-results.md >> $GITHUB_STEP_SUMMARY
|
run: cat code-coverage-results.md >> $GITHUB_STEP_SUMMARY
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче