* reorg

* one less config file

* lil more

* lil more
This commit is contained in:
Adeeb Shihadeh
2025-05-19 19:02:59 -07:00
committed by GitHub
parent 20c80e3929
commit 2f47af4b2e
40 changed files with 16 additions and 360 deletions

21
scripts/ci_shell.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/usr/bin/env bash
set -e
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
OP_ROOT="$DIR/../../"
PANDA_ROOT="$DIR/../"
if [ -z "$BUILD" ]; then
docker pull docker.io/commaai/panda:latest
else
docker build --cache-from docker.io/commaai/panda:latest -t docker.io/commaai/panda:latest -f $PANDA_ROOT/Dockerfile $PANDA_ROOT
fi
docker run \
-it \
--rm \
--volume $OP_ROOT:$OP_ROOT \
--workdir $PWD \
--env PYTHONPATH=$OP_ROOT \
docker.io/commaai/panda:latest \
/bin/bash