Update Jenkinsfile

This commit is contained in:
2018-08-08 09:45:10 +00:00
parent f19fd5e663
commit a37ffeb72f

5
Jenkinsfile vendored
View File

@@ -1,13 +1,12 @@
pipeline { pipeline {
agent { docker { image 'ubuntu:16.04' }} agent { docker { image 'ubuntu:16.04' } }
stages { stages {
stage('Test') { stage('Test') {
step { steps {
sh 'ls' sh 'ls'
sh 'pwd' sh 'pwd'
} }
} }
} }
} }