Jenkins update all containers to latest tag 2019-01-28

This commit is contained in:
Daniel Agar 2019-01-29 16:00:31 -05:00 committed by Paul Riseborough
parent a5e6191ba7
commit 81eabc1903
1 changed files with 8 additions and 8 deletions

16
Jenkinsfile vendored
View File

@ -7,7 +7,7 @@ pipeline {
stage('Linux GCC') {
agent {
docker {
image 'px4io/px4-dev-base:2017-12-30'
image 'px4io/px4-dev-base:2019-01-28'
args '-v ${CCACHE_DIR}:${CCACHE_DIR}:rw'
}
}
@ -27,7 +27,7 @@ pipeline {
stage('Linux Clang') {
agent {
docker {
image 'px4io/px4-dev-clang:2017-12-30'
image 'px4io/px4-dev-clang:2019-01-28'
args '-v ${CCACHE_DIR}:${CCACHE_DIR}:rw'
}
}
@ -74,7 +74,7 @@ pipeline {
stage('coverage') {
agent {
docker {
image 'px4io/px4-dev-ecl:2018-04-22'
image 'px4io/px4-dev-ecl:2019-01-28'
args '-v ${CCACHE_DIR}:${CCACHE_DIR}:rw'
}
}
@ -105,7 +105,7 @@ pipeline {
stage('EKF pytest') {
agent {
docker {
image 'px4io/px4-dev-ecl:2018-04-22'
image 'px4io/px4-dev-ecl:2019-01-28'
args '-v ${CCACHE_DIR}:${CCACHE_DIR}:rw'
}
}
@ -123,7 +123,7 @@ pipeline {
stage('test') {
agent {
docker {
image 'px4io/px4-dev-ecl:2018-04-22'
image 'px4io/px4-dev-ecl:2019-01-28'
args '-v ${CCACHE_DIR}:${CCACHE_DIR}:rw'
}
}
@ -140,7 +140,7 @@ pipeline {
stage('test (asan)') {
agent {
docker {
image 'px4io/px4-dev-ecl:2018-04-22'
image 'px4io/px4-dev-ecl:2019-01-28'
args '-v ${CCACHE_DIR}:${CCACHE_DIR}:rw'
}
}
@ -157,7 +157,7 @@ pipeline {
stage('doxygen') {
agent {
docker {
image 'px4io/px4-dev-base:2018-03-30'
image 'px4io/px4-dev-base:2019-01-28'
args '-v ${CCACHE_DIR}:${CCACHE_DIR}:rw'
}
}
@ -183,7 +183,7 @@ pipeline {
stage('PX4/Firmware build') {
agent {
docker {
image 'px4io/px4-dev-base:2018-03-30'
image 'px4io/px4-dev-base:2019-01-28'
args '-v ${CCACHE_DIR}:${CCACHE_DIR}:rw'
}
}