File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11#! /bin/sh
2+ set -eux
23apk add build-base python3 py3-pip curl
34curl --proto ' =https' --tlsv1.2 -LsSf https://github.com/astral-sh/uv/releases/download/0.7.8/uv-installer.sh > uv-installer.sh
45# Added sanity check file has not been tampered with
5- if sha256sum -c ./codecov-cli/scripts/uv-installer-0.7.8.sha256sum; then
6- sh uv-installer.sh
6+ if sha256sum -c ./scripts/uv-installer-0.7.8.sha256sum; then
7+ sh uv-installer.sh; else
8+ echo " uv-installer failed checksum" && exit 1
79fi
810cd prevent-cli
911/root/.local/bin/uv python pin 3.9 # we need to build with python 3.9 to support systems with libpython >= 3.9
Original file line number Diff line number Diff line change 11#! /bin/sh
2+ set -eux
23apt update
34DEBIAN_FRONTEND=noninteractive apt install -y tzdata
45apt install -y python3.9 python3.9-dev python3-pip
You can’t perform that action at this time.
0 commit comments