Skip to content

Commit 191255d

Browse files
committed
chore: Update tooling in Docker images
1 parent e733fad commit 191255d

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

docker/ci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ RUN pip install -q --no-cache-dir \
5454
# lxml 6.0.0 is not compatible with our image
5555
'lxml<6.0.0' \
5656
cmake \
57-
conan==2.22.1 \
57+
conan==2.24.0 \
5858
gcovr \
5959
# We're adding pre-commit to this image as well,
6060
# because clang-tidy workflow requires it

docker/ci/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ It is used in [Clio Github Actions](https://github.com/XRPLF/clio/actions) but c
55

66
The image is based on Ubuntu 20.04 and contains:
77

8-
- ccache 4.12.1
8+
- ccache 4.12.2
99
- Clang 19
1010
- ClangBuildAnalyzer 1.6.0
11-
- Conan 2.22.1
12-
- Doxygen 1.15.0
11+
- Conan 2.24.0
12+
- Doxygen 1.16.1
1313
- GCC 15.2.0
14-
- GDB 16.3
15-
- gh 2.82.1
16-
- git-cliff 2.10.1
14+
- GDB 17.1
15+
- gh 2.83.2
16+
- git-cliff 2.11.0
1717
- mold 2.40.4
1818
- Ninja 1.13.2
1919
- Python 3.8

docker/tools/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ RUN wget --progress=dot:giga "https://github.com/rui314/mold/archive/refs/tags/v
4242
&& ninja install \
4343
&& rm -rf /tmp/* /var/tmp/*
4444

45-
ARG CCACHE_VERSION=4.12.1
45+
ARG CCACHE_VERSION=4.12.2
4646
RUN wget --progress=dot:giga "https://github.com/ccache/ccache/releases/download/v${CCACHE_VERSION}/ccache-${CCACHE_VERSION}.tar.gz" \
4747
&& tar xf "ccache-${CCACHE_VERSION}.tar.gz" \
4848
&& cd "ccache-${CCACHE_VERSION}" \
@@ -59,7 +59,7 @@ RUN apt-get update \
5959
&& apt-get clean \
6060
&& rm -rf /var/lib/apt/lists/*
6161

62-
ARG DOXYGEN_VERSION=1.15.0
62+
ARG DOXYGEN_VERSION=1.16.1
6363
RUN wget --progress=dot:giga "https://github.com/doxygen/doxygen/releases/download/Release_${DOXYGEN_VERSION//./_}/doxygen-${DOXYGEN_VERSION}.src.tar.gz" \
6464
&& tar xf "doxygen-${DOXYGEN_VERSION}.src.tar.gz" \
6565
&& cd "doxygen-${DOXYGEN_VERSION}" \
@@ -79,13 +79,13 @@ RUN wget --progress=dot:giga "https://github.com/aras-p/ClangBuildAnalyzer/archi
7979
&& ninja install \
8080
&& rm -rf /tmp/* /var/tmp/*
8181

82-
ARG GIT_CLIFF_VERSION=2.10.1
82+
ARG GIT_CLIFF_VERSION=2.11.0
8383
RUN wget --progress=dot:giga "https://github.com/orhun/git-cliff/releases/download/v${GIT_CLIFF_VERSION}/git-cliff-${GIT_CLIFF_VERSION}-x86_64-unknown-linux-musl.tar.gz" \
8484
&& tar xf git-cliff-${GIT_CLIFF_VERSION}-x86_64-unknown-linux-musl.tar.gz \
8585
&& mv git-cliff-${GIT_CLIFF_VERSION}/git-cliff /usr/local/bin/git-cliff \
8686
&& rm -rf /tmp/* /var/tmp/*
8787

88-
ARG GH_VERSION=2.82.1
88+
ARG GH_VERSION=2.83.2
8989
RUN wget --progress=dot:giga "https://github.com/cli/cli/releases/download/v${GH_VERSION}/gh_${GH_VERSION}_linux_${TARGETARCH}.tar.gz" \
9090
&& tar xf gh_${GH_VERSION}_linux_${TARGETARCH}.tar.gz \
9191
&& mv gh_${GH_VERSION}_linux_${TARGETARCH}/bin/gh /usr/local/bin/gh \
@@ -100,7 +100,7 @@ RUN apt-get update \
100100
&& apt-get clean \
101101
&& rm -rf /var/lib/apt/lists/*
102102

103-
ARG GDB_VERSION=16.3
103+
ARG GDB_VERSION=17.1
104104
RUN wget --progress=dot:giga "https://sourceware.org/pub/gdb/releases/gdb-${GDB_VERSION}.tar.gz" \
105105
&& tar xf "gdb-${GDB_VERSION}.tar.gz" \
106106
&& cd "gdb-${GDB_VERSION}" \

0 commit comments

Comments
 (0)