diff options
author | Joan Touzet <joant@atypical.net> | 2018-07-13 11:34:39 -0400 |
---|---|---|
committer | Joan Touzet <wohali@users.noreply.github.com> | 2018-07-13 16:53:10 -0400 |
commit | a5858b99506dfcd843e8edb9ed06c85d783b0545 (patch) | |
tree | 5c3ca4d1309b95398233aae91257183d3afc8cb8 | |
parent | aa73e4e39dbabcbb4eba00bd971272d15ea71f2d (diff) | |
download | couchdb-a5858b99506dfcd843e8edb9ed06c85d783b0545.tar.gz |
Replace R16B03 with 17.5.3 for PR#1427
-rw-r--r-- | Jenkinsfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 7e8141c49..46fb7238c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -39,13 +39,13 @@ pipeline { } steps { // This image has the oldest Erlang we support, 16B03 - sh 'docker pull couchdbdev/ubuntu-trusty-erlang-default:latest' + sh 'docker pull couchdbdev/debian-jessie-erlang-17.5.3:latest' timeout(time: 15, unit: "MINUTES") { // https://github.com/jenkins-infra/jenkins.io/blob/master/Jenkinsfile#64 // We need the jenkins user mapped inside of the image // npm config cache below is required because /home/jenkins doesn't // ACTUALLY exist in the image - withDockerContainer(image: 'couchdbdev/ubuntu-trusty-erlang-default', args: '-e npm_config_cache=npm-cache -e HOME=. -v=/etc/passwd:/etc/passwd -v /etc/group:/etc/group') { + withDockerContainer(image: 'couchdbdev/debian-jessie-erlang-17.5.3', args: '-e npm_config_cache=npm-cache -e HOME=. -v=/etc/passwd:/etc/passwd -v /etc/group:/etc/group') { sh ''' set rm -rf apache-couchdb-* |