Skip to content

Commit

Permalink
replace md5 with sha256
Browse files Browse the repository at this point in the history
  • Loading branch information
MikhailKardash committed Jul 26, 2023
1 parent 052a1ad commit 81fa240
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -372,15 +372,15 @@ commands:
CONDA_DIR="/opt/conda"
CONDA_INSTALLER="Miniconda3-py39_23.5.2-0-Linux-x86_64.sh"
CONDA_MD5="9829d95f639bd0053b2ed06d1204e60644617bf37dd5cc57523732e0e8d64516"
CONDA_SHA256="9829d95f639bd0053b2ed06d1204e60644617bf37dd5cc57523732e0e8d64516"
CONDA_URL="https://repo.anaconda.com/miniconda"
mkdir -p /etc/determined/conda.d
mkdir -p "${CONDA_DIR}"
cd /tmp
curl --retry 3 -fsSL -O "${CONDA_URL}/${CONDA_INSTALLER}"
echo "${CONDA_MD5} ${CONDA_INSTALLER}" | md5sum -c -
echo "${CONDA_SHA256} ${CONDA_INSTALLER}" | sha256sum ${CONDA_INSTALLER}
bash "./${CONDA_INSTALLER}" -u -b -p "${CONDA_DIR}"
rm -f "./${CONDA_INSTALLER}"
Expand Down

0 comments on commit 81fa240

Please sign in to comment.