script for CI env

This commit is contained in:
Adeeb Shihadeh
2021-02-19 12:18:03 -08:00
parent cc00b85749
commit 992e5bf01e

19
selfdrive/test/ci_shell.sh Executable file
View File

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