-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
[3.13] Add zizmor to pre-commit and fix most findings (#127749) #127786
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
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> (cherry picked from commit ae31df3)
Looks like you might need to add |
No, JIT/Windows is also failing in a clean 3.13 branch: https://github.com/hugovk/cpython/actions/runs/12255332851/job/34188652334
And the changes in cc @brandtbucher FYI |
Ah, thanks, I should have looked more closely! |
I think the Windows failures in #127788 might be related, however? The error message there is different |
- name: Build CPython installer | ||
run: .\Tools\msi\build.bat --doc -${{ inputs.arch }} | ||
run: .\Tools\msi\build.bat --doc -"${ARCH}" |
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 probably should also have been
run: .\Tools\msi\build.bat --doc -"${ARCH}" | |
run: .\Tools\msi\build.bat --doc -"${ARCH}" | |
shell: bash |
maybe this job doesn't run on PRs?
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.
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.
hmmm... are we absolutely confident that the environment variable was properly expanded as part of the command that successfully ran in that workflow?
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.
Let's double check. Just heading out to Helsinki Python, I can check tomorrow if no-one beats me to it!
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.
Co-authored-by: Alex Waygood Alex.Waygood@Gmail.com
(cherry picked from commit ae31df3)