mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 10:38:42 +01:00
6342348072
bbbbdb0cd5
ci: Add filesystem lint check (MarcoFalke)fada2f9110
refactor: Replace <filesystem> with <util/fs.h> (MarcoFalke) Pull request description: Using `std::filesystem` is problematic: * There is a `fs` namespace wrapper for it. So having two ways to achieve the same is confusing. * Not using the `fs` wrapper is dangerous and buggy, because it disables known bugs by deleting problematic functions. Fix all issues by removing use of it and adding a linter to avoid using it again in the future. ACKs for top commit: TheCharlatan: ACKbbbbdb0cd5
fanquake: ACKbbbbdb0cd5
🦀 Tree-SHA512: 0e2d49742b08eb2635e6fce41485277cb9c40fe20b81017c391d3472a43787db1278a236825714ca1e41c9d2f59913865cfb0c649e3c8ab1fb598c849f80c660
59 lines
1.8 KiB
Bash
Executable File
59 lines
1.8 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2018-2022 The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
export LC_ALL=C
|
|
|
|
export PATH=$PWD/ci/retry:$PATH
|
|
|
|
${CI_RETRY_EXE} apt-get update
|
|
# Lint dependencies:
|
|
# - curl/xz-utils (to install shellcheck)
|
|
# - git (used in many lint scripts)
|
|
# - gpg (used by verify-commits)
|
|
${CI_RETRY_EXE} apt-get install -y curl xz-utils git gpg
|
|
|
|
PYTHON_PATH="/python_build"
|
|
if [ ! -d "${PYTHON_PATH}/bin" ]; then
|
|
(
|
|
${CI_RETRY_EXE} git clone https://github.com/pyenv/pyenv.git
|
|
cd pyenv/plugins/python-build || exit 1
|
|
./install.sh
|
|
)
|
|
# For dependencies see https://github.com/pyenv/pyenv/wiki#suggested-build-environment
|
|
${CI_RETRY_EXE} apt-get install -y build-essential libssl-dev zlib1g-dev \
|
|
libbz2-dev libreadline-dev libsqlite3-dev curl llvm \
|
|
libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev \
|
|
clang
|
|
env CC=clang python-build "$(cat "./.python-version")" "${PYTHON_PATH}"
|
|
fi
|
|
export PATH="${PYTHON_PATH}/bin:${PATH}"
|
|
command -v python3
|
|
python3 --version
|
|
|
|
export LINT_RUNNER_PATH="/lint_test_runner"
|
|
if [ ! -d "${LINT_RUNNER_PATH}" ]; then
|
|
${CI_RETRY_EXE} apt-get install -y cargo
|
|
(
|
|
cd ./test/lint/test_runner || exit 1
|
|
cargo build
|
|
mkdir -p "${LINT_RUNNER_PATH}"
|
|
mv target/debug/test_runner "${LINT_RUNNER_PATH}"
|
|
)
|
|
fi
|
|
|
|
${CI_RETRY_EXE} pip3 install \
|
|
codespell==2.2.5 \
|
|
flake8==6.1.0 \
|
|
lief==0.13.2 \
|
|
mypy==1.4.1 \
|
|
pyzmq==25.1.0 \
|
|
vulture==2.6
|
|
|
|
SHELLCHECK_VERSION=v0.8.0
|
|
curl -sL "https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION}/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" | \
|
|
tar --xz -xf - --directory /tmp/
|
|
mv "/tmp/shellcheck-${SHELLCHECK_VERSION}/shellcheck" /usr/bin/
|