Files
5e-a4-half-fold-booklet/Jenkinsfile
2018-08-08 09:46:36 +00:00

13 lines
247 B
Groovy

pipeline {
agent { docker { image 'ubuntu:16.04' } }
stages {
stage('Test') {
steps {
sh 'apt-get install git -y'
sh 'ls'
sh 'pwd'
}
}
}
}