jenkins-test/Jenkinsfile

16 lines
281 B
Text
Raw Permalink Normal View History

2020-03-28 22:15:36 +00:00
pipeline {
agent any
stages {
2020-03-28 22:24:53 +00:00
stage('Build') {
2020-03-28 22:15:36 +00:00
steps {
2020-03-28 22:24:53 +00:00
sh 'gcc --version'
sh '''
echo "Multiline shell steps works too"
ls -lah
'''
2020-03-28 22:15:36 +00:00
}
}
}
}