Changed the dockerhub destination to our public repo (#1202)

Signed-off-by: Adrian Sutton <adrian.sutton@consensys.net>
pull/2/head
Chris Mckay 6 years ago committed by GitHub
parent 28814e7d36
commit db21692330
  1. 4
      Jenkinsfile

4
Jenkinsfile vendored

@ -163,13 +163,13 @@ try {
docker.image(docker_image).inside("-e DOCKER_HOST=tcp://docker:2375 --link ${d.id}:docker") {
stage('build image') {
sh "cd docker && cp ../build/distributions/pantheon-*.tar.gz ."
pantheon = docker.build("pegasyseng/pantheon-develop:develop", "docker")
pantheon = docker.build("pegasyseng/pantheon:develop", "docker")
}
try {
stage('test image') {
sh "apk add bash"
sh "mkdir -p docker/reports"
sh "cd docker && bash test.sh pegasyseng/pantheon-develop:develop"
sh "cd docker && bash test.sh pegasyseng/pantheon:develop"
}
} finally {
junit 'docker/reports/*.xml'

Loading…
Cancel
Save