doesn't work, but jenkins should cache the image

pull/1984/head
Adeeb Shihadeh 5 years ago
parent 50ac7f9421
commit 63375099ea
  1. 8
      Jenkinsfile

8
Jenkinsfile vendored

@ -50,17 +50,15 @@ pipeline {
agent { agent {
dockerfile { dockerfile {
filename 'Dockerfile.openpilot' filename 'Dockerfile.openpilot'
additionalBuildArgs '--cache-from docker.io/commaai/openpilotci:latest'
args '--privileged --shm-size 1G' args '--privileged --shm-size 1G'
} }
} }
steps { stages {
stage('Build') {
sh 'scons -j4' sh 'scons -j4'
} }
} }
}
// *** On-device Tests ***
stage('On-device Tests') { stage('On-device Tests') {
agent { agent {

Loading…
Cancel
Save