From 40fa3e8f6189774099a12438af876046f4e40745 Mon Sep 17 00:00:00 2001 From: chrysn Date: Wed, 2 Oct 2024 10:49:41 +0200 Subject: [PATCH] static: Add cargo This is needed for the static tests introduced in [20886]; no need for nightly or target specific tools. [20886]: https://github.com/RIOT-OS/RIOT/pull/20886 --- static-test-tools/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static-test-tools/Dockerfile b/static-test-tools/Dockerfile index 17509102..64faa10f 100644 --- a/static-test-tools/Dockerfile +++ b/static-test-tools/Dockerfile @@ -1,4 +1,4 @@ -ARG DOCKER_REGISTRY="docker.io/riot" +arG DOCKER_REGISTRY="docker.io/riot" FROM ${DOCKER_REGISTRY}/riotdocker-base:latest LABEL maintainer="alexandre.abadie@inria.fr" @@ -13,6 +13,7 @@ RUN \ apt-get update && \ echo 'Installing static test tools' >&2 && \ apt-get -y --no-install-recommends install \ + cargo \ coccinelle \ cppcheck \ doxygen \