2018-08-03 11:34:25 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2020-12-31 05:48:25 -03:00
|
|
|
# Copyright (c) 2018-2020 The Bitcoin Core developers
|
2018-08-03 11:34:25 -04:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
export LC_ALL=C
|
|
|
|
|
2020-12-17 07:42:09 -03:00
|
|
|
${CI_RETRY_EXE} apt-get update
|
|
|
|
${CI_RETRY_EXE} apt-get install -y clang-format-9 python3-pip curl git gawk jq
|
2020-12-14 20:55:30 -03:00
|
|
|
update-alternatives --install /usr/bin/clang-format clang-format $(which clang-format-9 ) 100
|
|
|
|
update-alternatives --install /usr/bin/clang-format-diff clang-format-diff $(which clang-format-diff-9) 100
|
2020-06-27 11:43:49 -04:00
|
|
|
|
2021-01-02 08:10:32 -03:00
|
|
|
${CI_RETRY_EXE} pip3 install codespell==2.0.0
|
2020-12-14 20:55:30 -03:00
|
|
|
${CI_RETRY_EXE} pip3 install flake8==3.8.3
|
|
|
|
${CI_RETRY_EXE} pip3 install yq
|
|
|
|
${CI_RETRY_EXE} pip3 install mypy==0.781
|
2021-02-06 15:58:28 -03:00
|
|
|
${CI_RETRY_EXE} pip3 install vulture==2.3
|
2019-10-17 11:46:08 -03:00
|
|
|
|
2020-06-21 17:21:18 -04:00
|
|
|
SHELLCHECK_VERSION=v0.7.1
|
|
|
|
curl -sL "https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION}/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" | tar --xz -xf - --directory /tmp/
|
2019-10-17 11:46:08 -03:00
|
|
|
export PATH="/tmp/shellcheck-${SHELLCHECK_VERSION}:${PATH}"
|