Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add PGO support for OpenSSL #3014

Merged
merged 10 commits into from
Aug 26, 2022
Prev Previous commit
Next Next commit
Try getting the build string in the branch name one more time.
  • Loading branch information
anrossi committed Aug 26, 2022
commit 674160de20f75b67131630e3ba994e4d5e31a4a1
2 changes: 1 addition & 1 deletion .azure/templates/make-pgo-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
inputs:
pwsh: true
filePath: scripts/make-pgo-pr.ps1
arguments: -BuildNumber $(Build.BuildNumber)
arguments: -BuildNumber '$(Build.BuildNumber)'
env:
MAPPED_DEPLOYMENT_KEY: $(GitHubDeploymentKey)
1 change: 1 addition & 0 deletions scripts/make-pgo-pr.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ git config user.name "QUIC Dev[bot]"

# Make the branch.
$BranchName = "merge-pgo-$($BranchName)"
git fetch
git checkout -b $BranchName main

Copy-Item -Path artifacts/PerfDataResults/performance/windows/$($Arch)_$($Config)_schannel/msquic.pgd src/bin/winuser/pgo_$($Arch)/msquic.schannel.pgd -Force
Expand Down