Install specific golang version in Windows CI.#5571
Conversation
|
Hi @adelina-t. Thanks for your PR. I'm waiting for a containerd member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
|
Build succeeded.
|
|
/cc @dims |
For Periodic Windows runs we installed the latest available golang version. It seems 1.16.5 is creating problems with go.sum. We now introduce the ability to install specific versions for required packages when preparing the testing env. Signed-off-by: Adelina Tuvenie <[email protected]>
10df9ce to
419d616
Compare
|
Build succeeded.
|
|
@adelina-t can you try |
Tried that, did not work for me on that env, nothing changed. I’ll check on a clean env, to be sure. |
cool! In any case, I’ll leave this open, having the ability to set version of dependencies should be introduced at some point. |
|
/ok-to-test |
|
@containerd/committers Can someone take a look and merge this PR? |
…_version Install specific golang version in Windows CI. Signed-off-by: Surjit Bains <[email protected]>
For Periodic Windows runs we installed the latest available golang version.
It seems 1.16.5 is creating problems with go.sum. We now introduce the
ability to install specific versions for required packages when preparing
the testing env.
This was noticed after the merge of PR: #5562
Trying to run integration tests with golang v1.16.5 results in:
The usual suspects like
go mod tidydo not work.Every other version up until and including v1.16.4 works.
Signed-off-by: Adelina Tuvenie [email protected]