From 435fc161c4ea153b5ec348211785a9ad2f884c32 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 | 1 + 1 file changed, 1 insertion(+) diff --git a/static-test-tools/Dockerfile b/static-test-tools/Dockerfile index 17509102..872a2149 100644 --- a/static-test-tools/Dockerfile +++ b/static-test-tools/Dockerfile @@ -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 \