File tree Expand file tree Collapse file tree 3 files changed +17
-9
lines changed
Expand file tree Collapse file tree 3 files changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -96,21 +96,15 @@ task:
9696 name : ' lint'
9797 << : *BASE_TEMPLATE
9898 container :
99- image : debian:bookworm
99+ dockerfile : ci/lint_imagefile
100100 cpu : 1
101101 memory : 1G
102102 # For faster CI feedback, immediately schedule the linters
103103 << : *CREDITS_TEMPLATE
104- test_runner_cache :
105- folder : " /lint_test_runner"
106- fingerprint_script : echo $CIRRUS_TASK_NAME $(git rev-parse HEAD:test/lint/test_runner)
107- python_cache :
108- folder : " /python_build"
109- fingerprint_script : cat .python-version /etc/os-release
110104 unshallow_script :
111105 - git fetch --unshallow --no-tags
112106 lint_script :
113- - ./ci/lint_run_all .sh
107+ - ./ci/lint_run .sh
114108
115109task :
116110 name : ' tidy'
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ #
3+ # Copyright (c) The Bitcoin Core developers
4+ # Distributed under the MIT software license, see the accompanying
5+ # file COPYING or http://www.opensource.org/licenses/mit-license.php.
6+
7+ export LC_ALL=C.UTF-8
8+ set -o errexit -o pipefail -o xtrace
9+
10+ # Only used in .cirrus.yml. Refer to test/lint/README.md on how to run locally.
11+ export PATH=" /python_build/bin:${PATH} "
12+ export LINT_RUNNER_PATH=" /lint_test_runner"
13+ ./ci/lint/06_script.sh
Original file line number Diff line number Diff line change 66
77export LC_ALL=C.UTF-8
88
9- # Only used in .cirrus.yml. Refer to test/lint/README.md on how to run locally.
9+ # Only used in .cirrus.yml for stale re-runs of old pull request tasks. This
10+ # file can be removed in September 2025.
1011
1112cp " ./ci/retry/retry" " /ci_retry"
1213cp " ./.python-version" " /.python-version"
You can’t perform that action at this time.
0 commit comments