Update Jenkinsfile

This commit is contained in:
lagertonne 2020-03-28 23:24:53 +01:00
parent e78af66b95
commit e0cdc27b81

8
Jenkinsfile vendored
View file

@ -2,9 +2,13 @@ pipeline {
agent any agent any
stages { stages {
stage('build') { stage('Build') {
steps { steps {
echo 'Building..' sh 'gcc --version'
sh '''
echo "Multiline shell steps works too"
ls -lah
'''
} }
} }
} }