-
Notifications
You must be signed in to change notification settings - Fork 255
[QE] Set env var windows #4624
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
[QE] Set env var windows #4624
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
9222f56
to
561d278
Compare
561d278
to
f101751
Compare
Some of the test failures look related to these changes:
|
f101751
to
7450807
Compare
linter is failing, make sure run |
c742046
to
648d91b
Compare
Powershell needs bool parameters to be $true or $false
648d91b
to
82afc14
Compare
@albfan: The following test failed, say
Full PR test history. Your PR dashboard. Instructions 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-sigs/prow repository. I understand the commands that are listed here. |
Description
CI sets some configurations using env var,
FOO=bar
, but windows do not support that format, it should be$env:FOO=bar;
Fixes: #4618