mirror of https://github.com/qTox/qTox.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.4 KiB
63 lines
1.4 KiB
#!/usr/bin/env bash |
|
|
|
# Install verifying the hash |
|
|
|
# Get Python >=3.5 |
|
if [ "$TRAVIS_OS_NAME" == "osx" ] |
|
then |
|
brew update |
|
|
|
# make sha256sum available |
|
export PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH" |
|
|
|
brew upgrade python || true |
|
|
|
python --version || true |
|
python3 --version || true |
|
pyenv versions || true |
|
|
|
cd . |
|
cd "$(mktemp -d)" |
|
virtualenv env -p python3 |
|
set +u |
|
source env/bin/activate |
|
set -u |
|
cd - |
|
else |
|
python --version || true |
|
python3 --version || true |
|
pyenv versions || true |
|
|
|
pyenv global $(pyenv versions | grep -o ' 3\.[5-99]\.[1-99]' | tail -n1) |
|
fi |
|
|
|
pip install --upgrade pip |
|
|
|
check_sha256() |
|
{ |
|
if ! ( echo "$1 $2" | sha256sum -c --status - ) |
|
then |
|
echo "Error: sha256 of $2 doesn't match the known one." |
|
echo "Expected: $1 $2" |
|
echo -n "Got: " |
|
sha256sum "$2" |
|
exit 1 |
|
else |
|
echo "sha256 matches the expected one: $1" |
|
fi |
|
} |
|
|
|
# Don't install again if already installed. |
|
# OSX keeps re-installing it tough, as it uses a temp per-script virtualenv. |
|
if ! pip list --format=columns | grep '^ci-release-publisher ' |
|
then |
|
cd . |
|
cd "$(mktemp -d)" |
|
VERSION="0.2.0" |
|
FILENAME="ci_release_publisher-$VERSION-py3-none-any.whl" |
|
HASH="da7f139e90c57fb64ed2eb83c883ad6434d7c0598c843f7be7b572377bed4bc4" |
|
pip download ci_release_publisher==$VERSION |
|
check_sha256 "$HASH" "$FILENAME" |
|
pip install --no-index --find-links "$PWD" "$FILENAME" |
|
cd - |
|
fi
|
|
|