From b35ffa99bbf3f6e9684684619dc23787d4b21762 Mon Sep 17 00:00:00 2001 From: Ramon Roche Date: Mon, 23 Jun 2025 13:18:11 -0700 Subject: [PATCH] tools: container for all Signed-off-by: Ramon Roche --- Tools/docker_run.sh | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Tools/docker_run.sh b/Tools/docker_run.sh index 34d08d16f1..63e7b7c164 100755 --- a/Tools/docker_run.sh +++ b/Tools/docker_run.sh @@ -1,18 +1,5 @@ #! /bin/bash -if [ -z ${PX4_DOCKER_REPO+x} ]; then - echo "guessing PX4_DOCKER_REPO based on input"; - if [[ $@ =~ .*clang.* ]] || [[ $@ =~ .*scan-build.* ]]; then - # clang tools - PX4_DOCKER_REPO="px4io/px4-dev-clang:2021-02-04" - elif [[ $@ =~ .*tests* ]]; then - # run all tests with simulation - PX4_DOCKER_REPO="px4io/px4-dev-simulation-bionic:2021-12-11" - fi -else - echo "PX4_DOCKER_REPO is set to '$PX4_DOCKER_REPO'"; -fi - # otherwise default to nuttx if [ -z ${PX4_DOCKER_REPO+x} ]; then PX4_DOCKER_REPO="px4io/px4-dev:v1.16.0-rc1-258-g0369abd556"