mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
* add test for Git * Add Heroku * Add hhvm * Add Homebrew * Add Julia * Add kind * Add Kubernetes Tools * Remove kind and homebrew validate * replace capital letter * Add Leiningen * add source to Leiningen * Add Mercurial * Add conda * Add Netlify * Add packer * Add pollinate * Add Pulumi * Add Phantomjs * Add Haveged * Fix for kubectl * Fix julia installation * Add installer_script_folder env variable to run tests in brew provisioner * Add delay after reboot * Adjust pause settings
20 lines
636 B
Bash
20 lines
636 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: miniconda.sh
|
|
## Desc: Installs miniconda
|
|
################################################################################
|
|
|
|
source $HELPER_SCRIPTS/invoke-tests.sh
|
|
|
|
# Install Miniconda
|
|
curl -sL https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -o miniconda.sh \
|
|
&& chmod +x miniconda.sh \
|
|
&& ./miniconda.sh -b -p /usr/share/miniconda \
|
|
&& rm miniconda.sh
|
|
|
|
CONDA=/usr/share/miniconda
|
|
echo "CONDA=$CONDA" | tee -a /etc/environment
|
|
|
|
ln -s $CONDA/bin/conda /usr/bin/conda
|
|
|
|
invoke_tests "Tools" "Conda" |