Skip to content
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

Install miniconda on osx-arm64 #172

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
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
6 changes: 4 additions & 2 deletions canary-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ runs:
using: composite
steps:
- uses: conda-incubator/setup-miniconda@030178870c779d9e5e1b4e563269f3aa69b04081
with:
# conda not preinstalled in arm64 runners
miniconda-version: ${{ runner.os == 'macOS' && 'latest' || null }}
auto-update-conda: true

- name: Set output variables
id: vars
Expand Down Expand Up @@ -64,8 +68,6 @@ runs:
run: |
echo "::group::Setting up environment"
set -euo pipefail
conda activate
conda update --yes --quiet conda
conda install --yes --quiet conda-build anaconda-client
# git needs to be installed after conda-build
# see https://github.com/conda/conda/issues/11758
Expand Down
Loading