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:
parent
b04c769d65
commit
3897796548
1 changed files with 48 additions and 0 deletions
48
Jenkinsfile
vendored
48
Jenkinsfile
vendored
|
@ -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 '''
|
||||||
|
|
Loading…
Reference in a new issue