Update Jenkinsfile

This commit is contained in:
2018-08-08 09:43:48 +00:00
parent eae03d751e
commit f19fd5e663

9
Jenkinsfile vendored
View File

@@ -1,9 +1,10 @@
pipeline {
agent any
agent { docker { image 'ubuntu:16.04' }}
stages {
stage('Checkout') {
steps {
checkout scm
stage('Test') {
step {
sh 'ls'
sh 'pwd'
}
}