8000 Reintroduce support for building VMR from repo PR/CI by NikolaMilosavljevic · Pull Request #548 · dotnet/dotnet · GitHub
[go: up one dir, main page]

Skip to content

Reintroduce support for building VMR from repo PR/CI #548

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

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Checkout the correct sha
  • Loading branch information
NikolaMilosavljevic committed May 14, 2025
commit 30fe4f8685c38be4b7b0538a9749a8c6a36d9802
2 changes: 1 addition & 1 deletion eng/pipelines/templates/steps/vmr-pull-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ steps:
workingDirectory: $(Agent.BuildDirectory)/repo

- script: |
git fetch --all
git checkout $(vmr_sha)
git checkout -B ${{ parameters.vmrBranch }}-$(vmr_sha)
echo "##vso[task.setvariable variable=vmrBranch]${{ parameters.vmrBranch }}"
Expand All @@ -60,7 +61,6 @@ steps:
--vmr ${{ parameters.vmrPath }} \
--tmp $(Agent.TempDirectory) \
--azdev-pat '$(dn-bot-all-orgs-code-r)' \
--branch ${{ parameters.vmrBranch }} \
--ci \
--debug

Expand Down
0