simple-python-pyinstaller-app/Jenkinsfile
Mario 1a51293f45 Add Jenkinsfile to repo
Beginner pipeline
2018-11-27 13:29:43 -08:00

14 lines
287 B
Groovy

pipeline {
agent any
stages {
stage("Build") {
steps {
sh 'echo "Hello World"'
sh '''
echo "Multiline shell steps work too"
ls -lah
'''
}
}
}
}