This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Azure pipelines PR build fails with "Unexpected vmImage 'vs2017-win2017'"
Type: Stage: resolved
Components: Build, Windows Versions: Python 3.8, Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: steve.dower Nosy List: miss-islington, paul.moore, steve.dower, tim.golden, xtreak, zach.ware
Priority: normal Keywords: patch

Created on 2018-10-05 05:45 by xtreak, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 9719 merged steve.dower, 2018-10-05 17:19
PR 9723 merged miss-islington, 2018-10-05 18:05
PR 9724 merged miss-islington, 2018-10-05 18:06
Messages (10)
msg327102 - (view) Author: Karthikeyan Singaravelan (xtreak) * (Python committer) Date: 2018-10-05 05:45
Azure pipelines PR seems to fail with the error "Unexpected vmImage 'vs2017-win2017'" .

First build failure with this message : https://dev.azure.com/Python/cpython/_build/results?buildId=31800&view=results

Last successful build : https://dev.azure.com/Python/cpython/_build/results?buildId=31797&view=results


Thanks
msg327151 - (view) Author: Karthikeyan Singaravelan (xtreak) * (Python committer) Date: 2018-10-05 16:47
Similar error reported on Pandas and Numba repositories that was fixed a couple of days back : https://github.com/pandas-dev/pandas/pull/22948
msg327154 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2018-10-05 17:13
I'll get it.
msg327157 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2018-10-05 18:05
New changeset 4313a293dae579f3406aa94508ff3803a79b0344 by Steve Dower in branch 'master':
bpo-34902: Fixes VM image for Azure Pipelines build (GH-9719)
https://github.com/python/cpython/commit/4313a293dae579f3406aa94508ff3803a79b0344
msg327158 - (view) Author: Karthikeyan Singaravelan (xtreak) * (Python committer) Date: 2018-10-05 18:07
Thanks for the fix Steve. I am just wondering if there is a public announcement regarding this image being removed since Google couldn't get me anything.
msg327164 - (view) Author: miss-islington (miss-islington) Date: 2018-10-05 18:27
New changeset b57f800b351328a67b4a11a1864d39c6b9b8d39f by Miss Islington (bot) in branch '3.7':
bpo-34902: Fixes VM image for Azure Pipelines build (GH-9719)
https://github.com/python/cpython/commit/b57f800b351328a67b4a11a1864d39c6b9b8d39f
msg327166 - (view) Author: miss-islington (miss-islington) Date: 2018-10-05 18:32
New changeset 467360eeb24525e330d653826f21f30f47481d08 by Miss Islington (bot) in branch '3.6':
bpo-34902: Fixes VM image for Azure Pipelines build (GH-9719)
https://github.com/python/cpython/commit/467360eeb24525e330d653826f21f30f47481d08
msg327167 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2018-10-05 18:38
I didn't hear any public announcement, so perhaps not. I'll ask the team.
msg327178 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2018-10-05 19:26
Sounds like what happened is they *fixed* the error message when you use an invalid VMname. Previously it was falling back to the default, which happened to be the one we thought we were asking for.

I've asked for a more public feed of impactful changes, so hopefully we'll get that organised.
msg327195 - (view) Author: Karthikeyan Singaravelan (xtreak) * (Python committer) Date: 2018-10-05 22:38
Sure, thanks for the details and fix.
History
Date User Action Args
2022-04-11 14:59:06adminsetgithub: 79083
2018-10-05 22:38:07xtreaksetmessages: + msg327195
2018-10-05 19:26:32steve.dowersetmessages: + msg327178
2018-10-05 18:38:49steve.dowersetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-10-05 18:38:31steve.dowersetmessages: + msg327167
2018-10-05 18:32:24miss-islingtonsetmessages: + msg327166
2018-10-05 18:27:49miss-islingtonsetnosy: + miss-islington
messages: + msg327164
2018-10-05 18:07:52xtreaksetmessages: + msg327158
2018-10-05 18:06:05miss-islingtonsetpull_requests: + pull_request9109
2018-10-05 18:05:59miss-islingtonsetpull_requests: + pull_request9108
2018-10-05 18:05:52steve.dowersetmessages: + msg327157
2018-10-05 17:19:24steve.dowersetkeywords: + patch
stage: patch review
pull_requests: + pull_request9102
2018-10-05 17:13:44steve.dowersetassignee: steve.dower
messages: + msg327154
versions: + Python 3.6, Python 3.7
2018-10-05 16:47:12xtreaksetmessages: + msg327151
2018-10-05 05:45:27xtreakcreate