Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.

Commit 50748fb

Browse files
committed
Install condaforge in validate-aarch64
1 parent 88590cd commit 50748fb

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/validate-aarch64-linux-binaries.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,19 @@ jobs:
122122
script: |
123123
set -ex
124124
export DESIRED_PYTHON=${{ matrix.python_version }}
125-
source ./aarch64_linux/aarch64_ci_setup.sh
126125
echo "/opt/conda/bin" >> $GITHUB_PATH
126+
###############################################################################
127+
# Install conda
128+
# disable SSL_verify due to getting "Could not find a suitable TLS CA certificate bundle, invalid path"
129+
# when using Python version, less than the conda latest
130+
###############################################################################
131+
echo 'Installing conda-forge'
132+
curl -L -o /mambaforge.sh https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-aarch64.sh
133+
chmod +x /mambaforge.sh
134+
/mambaforge.sh -b -p /opt/conda
135+
rm /mambaforge.sh
136+
source /opt/conda/etc/profile.d/conda.sh
137+
conda config --set ssl_verify False
127138
128139
export ENV_NAME="conda-env-${{ github.run_id }}"
129140
export TARGET_OS="linux-aarch64"

0 commit comments

Comments
 (0)