ium_434765/Jenkinsfile

14 lines
284 B
Plaintext
Raw Normal View History

2021-03-27 17:50:28 +01:00
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'echo "Hello World"'
sh '''
echo "Multiline shell steps works too"
ls -lah
'''
}
}
}
}