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 {
agent { docker { image 'ubuntu:16.04' }}
agent { docker { image 'ubuntu:16.04' } }
stages {
stage('Test') {
step {
steps {
sh 'ls'
sh 'pwd'
}
}
}
}