File tree 5 files changed +20
-2
lines changed
5 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 6
6
7
7
export LC_ALL=C
8
8
9
+ set -ex
10
+
9
11
if [ -n " $LOCAL_BRANCH " ]; then
10
12
# To faithfully recreate CI linting locally, specify all commits on the current
11
13
# branch.
Original file line number Diff line number Diff line change 1
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 https://opensource.org/license/mit/.
6
+
2
7
export LC_ALL=C
3
8
4
9
# Fixes permission issues when there is a container UID/GID mismatch with the owner
Original file line number Diff line number Diff line change
1
+ # Copyright (c) The Bitcoin Core developers
2
+ # Distributed under the MIT software license, see the accompanying
3
+ # file COPYING or https://opensource.org/license/mit/.
4
+
1
5
# See test/lint/README.md for usage.
2
6
3
7
FROM debian:bookworm
@@ -6,7 +10,7 @@ ENV DEBIAN_FRONTEND=noninteractive
6
10
ENV LC_ALL=C.UTF-8
7
11
8
12
COPY ./.python-version /.python-version
9
- COPY ./ci/lint/docker -entrypoint.sh /entrypoint.sh
13
+ COPY ./ci/lint/container -entrypoint.sh /entrypoint.sh
10
14
COPY ./ci/lint/04_install.sh /install.sh
11
15
12
16
RUN /install.sh && \
Original file line number Diff line number Diff line change @@ -8,4 +8,5 @@ export LC_ALL=C.UTF-8
8
8
9
9
set -o errexit; source ./ci/test/00_setup_env.sh
10
10
set -o errexit; source ./ci/lint/04_install.sh
11
- set -o errexit; source ./ci/lint/06_script.sh
11
+ set -o errexit
12
+ ./ci/lint/06_script.sh
Original file line number Diff line number Diff line change
1
+ # Copyright (c) The Bitcoin Core developers
2
+ # Distributed under the MIT software license, see the accompanying
3
+ # file COPYING or https://opensource.org/license/mit/.
4
+
5
+ # See ci/README.md for usage.
6
+
1
7
ARG CI_IMAGE_NAME_TAG
2
8
FROM ${CI_IMAGE_NAME_TAG}
3
9
You can’t perform that action at this time.
0 commit comments