diff --git a/Jenkinsfile b/Jenkinsfile index 2629158..e414efa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,9 +2,13 @@ pipeline { agent any stages { - stage('build') { + stage('Build') { steps { - echo 'Building..' + sh 'gcc --version' + sh ''' + echo "Multiline shell steps works too" + ls -lah + ''' } } }