jenkins-test/Jenkinsfile
2020-03-28 23:24:53 +01:00

15 lines
281 B
Groovy

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