-
Notifications
You must be signed in to change notification settings - Fork 161
Update build_steps.yml fix condition #2300
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
Conversation
| - name: Remove AWS testing account and credentials | ||
| if: always() && inputs.persistent_storage == 'true' && matrix.os == 'windows' | ||
| run: | | ||
| echo "env.real_tests_enabled: [${{ env.real_tests_enabled }}]" |
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.
This is not really needed as GH already prints the env vars that are used in a given step
.github/workflows/build_steps.yml
Outdated
|
|
||
| # Fallback if the clean up at test fixutre tear down fails due to crash or etc | ||
| - name: Remove AWS testing account and credentials | ||
| if: always() && inputs.persistent_storage == 'true' && matrix.os == 'windows' |
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.
I think the condition of running Set s3 sts persistent storage variables for Windows and Remove AWS testing account and credentials should align
Reference Issues/PRs
What does this implement or fix?
Any other comments?
Checklist
Checklist for code changes...