1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Jenkinsfile: Add "info" step to all stages

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2019-08-02 20:20:22 +02:00
parent b04c769d65
commit 3897796548
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C

48
Jenkinsfile vendored
View file

@ -32,6 +32,12 @@ pipeline {
agent { label 'amd64 && ubuntu-1804 && overlay2' } agent { label 'amd64 && ubuntu-1804 && overlay2' }
stages { stages {
stage("Print info") {
steps {
sh 'docker version'
sh 'docker info'
}
}
stage("Build dev image") { stage("Build dev image") {
steps { steps {
sh ''' sh '''
@ -95,6 +101,12 @@ pipeline {
agent { label 'amd64 && ubuntu-1804 && overlay2' } agent { label 'amd64 && ubuntu-1804 && overlay2' }
stages { stages {
stage("Print info") {
steps {
sh 'docker version'
sh 'docker info'
}
}
stage("Build dev image") { stage("Build dev image") {
steps { steps {
sh ''' sh '''
@ -167,6 +179,12 @@ pipeline {
agent { label 'amd64 && ubuntu-1804 && overlay2' } agent { label 'amd64 && ubuntu-1804 && overlay2' }
stages { stages {
stage("Print info") {
steps {
sh 'docker version'
sh 'docker info'
}
}
stage("Build dev image") { stage("Build dev image") {
steps { steps {
sh ''' sh '''
@ -225,6 +243,12 @@ pipeline {
agent { label 's390x-ubuntu-1604' } agent { label 's390x-ubuntu-1604' }
stages { stages {
stage("Print info") {
steps {
sh 'docker version'
sh 'docker info'
}
}
stage("Build dev image") { stage("Build dev image") {
steps { steps {
sh ''' sh '''
@ -283,6 +307,12 @@ pipeline {
agent { label 'ppc64le-ubuntu-1604' } agent { label 'ppc64le-ubuntu-1604' }
stages { stages {
stage("Print info") {
steps {
sh 'docker version'
sh 'docker info'
}
}
stage("Build dev image") { stage("Build dev image") {
steps { steps {
sh ''' sh '''
@ -341,6 +371,12 @@ pipeline {
agent { label 'amd64 && ubuntu-1804 && overlay2' } agent { label 'amd64 && ubuntu-1804 && overlay2' }
stages { stages {
stage("Print info") {
steps {
sh 'docker version'
sh 'docker info'
}
}
stage("Build dev image") { stage("Build dev image") {
steps { steps {
sh ''' sh '''
@ -382,6 +418,12 @@ pipeline {
} }
} }
stages { stages {
stage("Print info") {
steps {
sh 'docker version'
sh 'docker info'
}
}
stage("Run tests") { stage("Run tests") {
steps { steps {
powershell ''' powershell '''
@ -405,6 +447,12 @@ pipeline {
} }
} }
stages { stages {
stage("Print info") {
steps {
sh 'docker version'
sh 'docker info'
}
}
stage("Run tests") { stage("Run tests") {
steps { steps {
powershell ''' powershell '''