refactor(jenkinsfile): fix syntax
Signed-off-by: zontreck <tarapiccari@gmail.com>
This commit is contained in:
parent
ee0301a1cb
commit
732259e6f9
1 changed files with 13 additions and 9 deletions
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
|
@ -16,7 +16,8 @@ pipeline {
|
|||
}
|
||||
|
||||
steps {
|
||||
script '''
|
||||
script {
|
||||
sh '''
|
||||
#!/bin/bash
|
||||
|
||||
git clean -xfd
|
||||
|
@ -24,6 +25,7 @@ pipeline {
|
|||
'''
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage("Build ISO") {
|
||||
agent {
|
||||
|
@ -31,7 +33,8 @@ pipeline {
|
|||
}
|
||||
|
||||
steps {
|
||||
script '''
|
||||
script {
|
||||
sh '''
|
||||
#!/bin/bash
|
||||
|
||||
mkarchiso -v -w work -o out server
|
||||
|
@ -40,3 +43,4 @@ pipeline {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue