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