Update Jenkinsfile

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

3
Jenkinsfile vendored
View File

@@ -2,12 +2,11 @@ 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'
} }
} }
} }
} }