2020-12-17 11:42:09 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2024-07-22 13:18:31 +02:00
|
|
|
# Copyright (c) 2019-present The Bitcoin Core developers
|
2020-12-17 11:42:09 +01: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.UTF-8
|
|
|
|
|
2024-07-22 13:23:48 +02:00
|
|
|
# Only used in .cirrus.yml. Refer to test/lint/README.md on how to run locally.
|
|
|
|
|
2024-07-22 13:18:31 +02:00
|
|
|
cp "./ci/retry/retry" "/ci_retry"
|
2024-07-22 13:39:20 +02:00
|
|
|
cp "./.python-version" "/.python-version"
|
|
|
|
mkdir --parents "/test/lint"
|
|
|
|
cp --recursive "./test/lint/test_runner" "/test/lint/"
|
2020-12-17 11:42:09 +01:00
|
|
|
set -o errexit; source ./ci/lint/04_install.sh
|
2023-07-19 11:22:12 +02:00
|
|
|
set -o errexit
|
|
|
|
./ci/lint/06_script.sh
|