File tree Expand file tree Collapse file tree 3 files changed +15
-8
lines changed Expand file tree Collapse file tree 3 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 70
70
memory : 1G
71
71
# For faster CI feedback, immediately schedule the linters
72
72
<< : *CREDITS_TEMPLATE
73
- setup_script :
74
- - set -o errexit; source ./ci/test/00_setup_env.sh
75
- install_script :
76
- - set -o errexit; source ./ci/lint/04_install.sh
77
- before_script :
78
- - set -o errexit; source ./ci/lint/05_before_script.sh
79
73
lint_script :
80
- - set -o errexit; source ./ci/lint/06_script .sh
74
+ - ./ci/lint_run_all .sh
81
75
82
76
task :
83
77
name : ' ARM [unit tests, no functional tests] [buster]'
Original file line number Diff line number Diff line change 6
6
7
7
export LC_ALL=C
8
8
9
- ${CI_RETRY_EXE} apt update && apt install -y clang-format-9 python3-pip curl git
9
+ ${CI_RETRY_EXE} apt-get update
10
+ ${CI_RETRY_EXE} apt-get install -y clang-format-9 python3-pip curl git gawk jq
10
11
update-alternatives --install /usr/bin/clang-format clang-format $( which clang-format-9 ) 100
11
12
update-alternatives --install /usr/bin/clang-format-diff clang-format-diff $( which clang-format-diff-9) 100
12
13
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ #
3
+ # Copyright (c) 2019 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
+
9
+ set -o errexit; source ./ci/test/00_setup_env.sh
10
+ set -o errexit; source ./ci/lint/04_install.sh
11
+ set -o errexit; source ./ci/lint/05_before_script.sh
12
+ set -o errexit; source ./ci/lint/06_script.sh
You can’t perform that action at this time.
0 commit comments