File tree 3 files changed +17
-9
lines changed
3 files changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -96,21 +96,15 @@ task:
96
96
name : ' lint'
97
97
<< : *BASE_TEMPLATE
98
98
container :
99
- image : debian:bookworm
99
+ dockerfile : ci/lint_imagefile
100
100
cpu : 1
101
101
memory : 1G
102
102
# For faster CI feedback, immediately schedule the linters
103
103
<< : *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
110
104
unshallow_script :
111
105
- git fetch --unshallow --no-tags
112
106
lint_script :
113
- - ./ci/lint_run_all .sh
107
+ - ./ci/lint_run .sh
114
108
115
109
task :
116
110
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 6
6
7
7
export LC_ALL=C.UTF-8
8
8
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.
10
11
11
12
cp " ./ci/retry/retry" " /ci_retry"
12
13
cp " ./.python-version" " /.python-version"
You can’t perform that action at this time.
0 commit comments