-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
vm-repair: Bug Fix when HyperV-version Variable is None #1553
Conversation
add to S168 |
@yonzhan Has some process changed for PRs? |
Yes, the process is changed to automatically release extensions. @haroldrandom can help with it. |
You should not change source code and index.json at the same time right now. |
src/index.json should't modify both in one PR, we have a release pipeline for publishing your extension automatically. The detail should be listed in PR template, captured from other PR:
|
copy_disk_command = 'az disk create -g {g} -n {n} --source {s} --sku {sku} --location {loc} --os-type {os_type} --query id -o tsv' \ | ||
.format(g=resource_group_name, n=copy_disk_name, s=target_disk_name, sku=disk_sku, loc=location, os_type=os_type) | ||
# Only add hyperV variable when available | ||
if hyperV_generation: | ||
copy_disk_command += ' --hyper-v-generation {hyperV}'.format(hyperV=hyperV_generation) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me.
Got it. That's great. Creating the wheel file, uploading it, and making the hash has always been really tedious and made PR changes difficult. This is an awesome change. Thanks. Then when does the release pipeline happen? And how would I know it has been released with the index.json updated? |
hi @qwordy could you pls help to review/merge this PR? thanks |
Normally PR developer won't get notifed for the PR to update src/index.json, @fengzhou-msft and I will get notification once because code owner review mechanism. We will assign it to the assignee who responsible for the source PR to trigger this one, then approve it. |
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
Quick few liner bug fix when the HyperV-version variable is none