mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-19 06:34:00 +08:00
8 lines
249 B
Bash
Executable File
8 lines
249 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
docker build -t tmppilot -f Dockerfile.openpilot .
|
|
docker run --rm \
|
|
-v "$(pwd)"/selfdrive/test/plant/out:/tmp/openpilot/selfdrive/test/plant/out \
|
|
tmppilot /bin/sh -c 'cd /tmp/openpilot/selfdrive/test/plant && ./runtest.sh'
|