Skip to content

Commit

Permalink
remove implicit params
Browse files Browse the repository at this point in the history
  • Loading branch information
ProjectsByJackHe committed Sep 17, 2024
1 parent 28766e1 commit 1c9acee
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/lab-quic-callee.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ jobs:
echo "tls: ${{ github.event.client_payload.tls }}"
echo "arch: ${{ github.event.client_payload.arch }}"
echo "caller id: ${{ github.event.client_payload.caller_id }}"
echo "sha: ${{ github.event.client_payload.sha }}"
echo "ref: ${{ github.event.client_payload.ref }}"
echo "pr: ${{ github.event.client_payload.pr }}"
run-secnetperf:
name: secnetperf
Expand Down Expand Up @@ -63,12 +66,12 @@ jobs:
run: |
$env:netperf_remote_powershell_supported = $true
./scripts/secnetperf.ps1 `
-LogProfile ${{ github.event.client_payload.logs || inputs.logprofile || 'NULL' }} `
-LogProfile ${{ github.event.client_payload.logs || 'NULL' }} `
-MsQuicCommit ${{ github.event.client_payload.sha || github.event.client_payload.ref || inputs.ref || 'main' }} `
-environment ${{ github.event.client_payload.env }} `
-environment lab `
-plat ${{env.OS}} `
-os ${{ github.event.client_payload.os }} `
-arch ${{ github.event.client_payload.arch }} `
-tls ${{ github.event.client_payload.tls }} `
-io ${{ github.event.client_payload.io }} `
-filter '${{ github.event.client_payload.filter || inputs.filter || '' }}'
-filter '${{ github.event.client_payload.filter || '' }}'

0 comments on commit 1c9acee

Please sign in to comment.