mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-13 03:30:42 +02:00

Currently, the lint_test_runner is built and installed into the lint CI image. This is problematic, because it triggers a full image build on every change to its source code. Doing a build of the lint test_runner on every run is easier and faster.
13 lines
407 B
Bash
Executable File
13 lines
407 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 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.UTF-8
|
|
set -o errexit -o pipefail -o xtrace
|
|
|
|
# Only used in .cirrus.yml. Refer to test/lint/README.md on how to run locally.
|
|
export PATH="/python_build/bin:${PATH}"
|
|
./ci/lint/06_script.sh
|