Update Jenkinsfile
This commit is contained in:
parent
e78af66b95
commit
e0cdc27b81
1 changed files with 6 additions and 2 deletions
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
|
@ -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
|
||||||
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue