diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..d330a0a --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,14 @@ +pipeline { + agent any + stages { + stage("Build") { + steps { + sh 'echo "Hello World"' + sh ''' + echo "Multiline shell steps work too" + ls -lah + ''' + } + } + } +}