Skip to content

Commit fa2f18a

Browse files
author
MarcoFalke
committed
ci: Use DOCKER_BUILDKIT for lint image
Can be reviewed with: --color-moved=dimmed-zebra --ignore-all-space
1 parent 01e5d6b commit fa2f18a

7 files changed

+47
-58
lines changed

.cirrus.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ task:
7070
# For faster CI feedback, immediately schedule the linters
7171
<< : *CREDITS_TEMPLATE
7272
python_cache:
73-
folder: "/tmp/python"
73+
folder: "/python_build"
7474
fingerprint_script: cat .python-version /etc/os-release
7575
unshallow_script:
7676
- git fetch --unshallow --no-tags

.python-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.8.16
1+
3.8.17

ci/lint/04_install.sh

+23-24
Original file line numberDiff line numberDiff line change
@@ -13,32 +13,31 @@ ${CI_RETRY_EXE} apt-get update
1313
# - gpg (used by verify-commits)
1414
${CI_RETRY_EXE} apt-get install -y curl xz-utils git gpg
1515

16-
if [ -z "${SKIP_PYTHON_INSTALL}" ]; then
17-
PYTHON_PATH=/tmp/python
18-
if [ ! -d "${PYTHON_PATH}/bin" ]; then
19-
(
20-
git clone https://github.com/pyenv/pyenv.git
21-
cd pyenv/plugins/python-build || exit 1
22-
./install.sh
23-
)
24-
# For dependencies see https://github.com/pyenv/pyenv/wiki#suggested-build-environment
25-
${CI_RETRY_EXE} apt-get install -y build-essential libssl-dev zlib1g-dev \
26-
libbz2-dev libreadline-dev libsqlite3-dev curl llvm \
27-
libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev \
28-
clang
29-
env CC=clang python-build "$(cat "${BASE_ROOT_DIR}/.python-version")" "${PYTHON_PATH}"
30-
fi
31-
export PATH="${PYTHON_PATH}/bin:${PATH}"
32-
command -v python3
33-
python3 --version
16+
PYTHON_PATH="/python_build"
17+
if [ ! -d "${PYTHON_PATH}/bin" ]; then
18+
(
19+
git clone https://github.com/pyenv/pyenv.git
20+
cd pyenv/plugins/python-build || exit 1
21+
./install.sh
22+
)
23+
# For dependencies see https://github.com/pyenv/pyenv/wiki#suggested-build-environment
24+
${CI_RETRY_EXE} apt-get install -y build-essential libssl-dev zlib1g-dev \
25+
libbz2-dev libreadline-dev libsqlite3-dev curl llvm \
26+
libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev \
27+
clang
28+
env CC=clang python-build "$(cat "./.python-version")" "${PYTHON_PATH}"
3429
fi
30+
export PATH="${PYTHON_PATH}/bin:${PATH}"
31+
command -v python3
32+
python3 --version
3533

36-
${CI_RETRY_EXE} pip3 install codespell==2.2.5
37-
${CI_RETRY_EXE} pip3 install flake8==6.0.0
38-
${CI_RETRY_EXE} pip3 install lief==0.13.2
39-
${CI_RETRY_EXE} pip3 install mypy==1.4.1
40-
${CI_RETRY_EXE} pip3 install pyzmq==25.1.0
41-
${CI_RETRY_EXE} pip3 install vulture==2.6
34+
${CI_RETRY_EXE} pip3 install \
35+
codespell==2.2.5 \
36+
flake8==6.0.0 \
37+
lief==0.13.2 \
38+
mypy==1.4.1 \
39+
pyzmq==25.1.0 \
40+
vulture==2.6
4241

4342
SHELLCHECK_VERSION=v0.8.0
4443
curl -sL "https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION}/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" | \

ci/lint/Dockerfile

-29
This file was deleted.

ci/lint/docker-entrypoint.sh

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ export LC_ALL=C
55
# of the mounted bitcoin src dir.
66
git config --global --add safe.directory /bitcoin
77

8+
export PATH="/python_build/bin:${PATH}"
9+
810
if [ -z "$1" ]; then
911
LOCAL_BRANCH=1 bash -ic "./ci/lint/06_script.sh"
1012
else

ci/lint_imagefile

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# See test/lint/README.md for usage.
2+
3+
FROM debian:bookworm
4+
5+
ENV DEBIAN_FRONTEND=noninteractive
6+
ENV LC_ALL=C.UTF-8
7+
8+
COPY ./.python-version /.python-version
9+
COPY ./ci/lint/docker-entrypoint.sh /entrypoint.sh
10+
COPY ./ci/lint/04_install.sh /install.sh
11+
12+
RUN /install.sh && \
13+
echo 'alias lint="./ci/lint/06_script.sh"' >> ~/.bashrc && \
14+
chmod 755 /entrypoint.sh && \
15+
rm -rf /var/lib/apt/lists/*
16+
17+
18+
WORKDIR /bitcoin
19+
ENTRYPOINT ["/entrypoint.sh"]

test/lint/README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@ To run linters locally with the same versions as the CI environment, use the inc
77
Dockerfile:
88

99
```sh
10-
cd ./ci/lint
11-
docker build -t bitcoin-linter .
10+
DOCKER_BUILDKIT=1 docker build -t bitcoin-linter --file "./ci/lint_imagefile" ./
1211

13-
cd /root/of/bitcoin/repo
1412
docker run --rm -v $(pwd):/bitcoin -it bitcoin-linter
1513
```
1614

0 commit comments

Comments
 (0)