mirror of https://github.com/commaai/panda.git
51 lines
1.6 KiB
Groovy
51 lines
1.6 KiB
Groovy
pipeline {
|
|
agent any
|
|
environment {
|
|
DOCKER_IMAGE_TAG = "panda:build-${env.GIT_COMMIT}"
|
|
}
|
|
stages {
|
|
stage('Build Docker Image') {
|
|
steps {
|
|
timeout(time: 60, unit: 'MINUTES') {
|
|
script {
|
|
sh 'git archive -v -o panda.tar.gz --format=tar.gz HEAD'
|
|
dockerImage = docker.build("${env.DOCKER_IMAGE_TAG}")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
stage('PEDAL tests') {
|
|
steps {
|
|
lock(resource: "pedal", inversePrecedence: true, quantity: 1) {
|
|
timeout(time: 10, unit: 'MINUTES') {
|
|
script {
|
|
sh "docker run --rm --privileged \
|
|
--volume /dev/bus/usb:/dev/bus/usb \
|
|
--volume /var/run/dbus:/var/run/dbus \
|
|
--net host \
|
|
${env.DOCKER_IMAGE_TAG} \
|
|
bash -c 'cd /tmp/panda && PEDAL_JUNGLE=23002d000851393038373731 python ./tests/pedal/test_pedal.py'"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
stage('HITL tests') {
|
|
steps {
|
|
lock(resource: "pandas", inversePrecedence: true, quantity: 1) {
|
|
timeout(time: 20, unit: 'MINUTES') {
|
|
script {
|
|
sh "docker run --rm --privileged \
|
|
--volume /dev/bus/usb:/dev/bus/usb \
|
|
--volume /var/run/dbus:/var/run/dbus \
|
|
--net host \
|
|
${env.DOCKER_IMAGE_TAG} \
|
|
bash -c 'cd /tmp/panda && scons && PANDAS_JUNGLE=058010800f51363038363036 ./tests/automated/test.sh'"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|