Add Jenkinsfile to repo

Beginner pipeline
This commit is contained in:
Mario 2018-11-27 13:29:43 -08:00
parent 128e9ba59f
commit 1a51293f45

14
Jenkinsfile vendored Normal file
View file

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