ium_434765/Jenkinsfile
2021-03-27 17:50:28 +01:00

14 lines
284 B
Groovy

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