-
-
Notifications
You must be signed in to change notification settings - Fork 692
Replace conda install in github CI by actions/setup-python@v2 #1079
Copy link
Copy link
Closed
Labels
Description
🚀 Feature
In order to accelerate env and dependencies installation we can opt to replace:
ignite/.github/workflows/unittests.yml
Lines 19 to 25 in cc78b3b
| - name: Setup Conda | |
| run: | | |
| wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh | |
| bash miniconda.sh -b -p $HOME/miniconda | |
| export PATH="$HOME/miniconda/bin:$PATH" | |
| conda config --set always_yes yes --set changeps1 no | |
| conda update -q conda |
by
ignite/.github/workflows/tpu-tests.yml
Lines 14 to 19 in cc78b3b
| - name: Set up Python 3.6 | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.6' | |
| architecture: 'x64' | |
with correct python version
Reactions are currently unavailable