You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I tried using this action on a self-hosted runner where I don't want to install+uninstall mamba on each run to save time, is this planned to be supported someday? (should just skip if the env already exists)
Currently fails:
Current workaround: cannot use setup-micromamba@v1, install mamba outside of gha as I keep the same runner, and install + setup the env manually like this:
- name: Setup python envrun: | env=ci_py39 if ! mamba env list | grep --word-regexp --quiet $env; then mamba create -n $env python=3.9 --yes fi echo $(conda info --base)/envs/$env/bin >> $GITHUB_PATH
- name: Install packagerun: | pip install ...
The text was updated successfully, but these errors were encountered:
I would also appreciate a option to use an already installed version of micromamba instead of downloading micromamba for each run. In the self-hosted runner scenario environment i am running in, i have very restricted network access and would like to avoid external traffic completely.
Hello, I tried using this action on a self-hosted runner where I don't want to install+uninstall mamba on each run to save time, is this planned to be supported someday? (should just skip if the env already exists)
Currently fails:
Current workaround: cannot use setup-micromamba@v1, install mamba outside of gha as I keep the same runner, and install + setup the env manually like this:
The text was updated successfully, but these errors were encountered: