Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ export const getCondaArch = () => {
'linux-x64': 'linux-64',
'linux-arm64': 'linux-aarch64',
'linux-ppc64': 'linux-ppc64le',
'win32-x64': 'win-64'
'win32-x64': 'win-64',
'win32-arm64': 'win-arm64'
Comment thread
pavelzw marked this conversation as resolved.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

as long as https://github.com/mamba-org/micromamba-releases/releases/tag/2.1.0-0 doesn't have binaries for win-arm64, this won't work

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah yes, and I guess we'll need to create win-arm64 builds on https://github.com/conda-forge/micromamba-feedstock first, xref conda-forge/conda-forge.github.io#1940.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

as long as https://github.com/mamba-org/micromamba-releases/releases/tag/2.1.0-0 doesn't have binaries for win-arm64, this won't work

Issue tracked at mamba-org/micromamba-releases#91

}
const arch = archDict[`${os.platform()}-${os.arch()}`]
if (!arch) {
Expand Down
Loading