-
Notifications
You must be signed in to change notification settings - Fork 71
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
Investigate errors on missing $CONDA
on macos-13
#345
Conversation
Yoohoo, reproduces now! We were not considering that GH-hosted x64 runners on macOS could happen. But that's the problem with macos-13. It's x64 and doesn't bundle any $CONDA. I'll submit a potential fix now. |
$CONDA
$CONDA
on macos-13
@@ -15,7 +16,8 @@ export const bundledMinicondaUser: types.IInstallerProvider = { | |||
inputs.miniforgeVariant === "" && | |||
inputs.miniforgeVersion === "" && | |||
inputs.architecture === "x64" && | |||
inputs.installerUrl === "" | |||
inputs.installerUrl === "" && | |||
MINICONDA_DIR_PATH.length > 0 |
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.
That list of &&s
is getting a bit unwieldy 😆 !
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.
Awesome ! fix looks nice and simple :)
Merging!
Seen in https://github.com/conda/conda-standalone/actions/runs/8799309039/job/24148102977?pr=67 and https://github.com/conda/conda-build/actions/runs/8799101015/job/24147451008