Add mock build step
This commit is contained in:
parent
27c2705d34
commit
be3a3fcc72
1 changed files with 16 additions and 0 deletions
16
Jenkinsfile
vendored
Normal file
16
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
pipeline {
|
||||
agent none
|
||||
stages {
|
||||
stage('Build') {
|
||||
agent {
|
||||
docker {
|
||||
image 'docker:latest'
|
||||
}
|
||||
|
||||
}
|
||||
steps {
|
||||
sh 'env'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue