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
22
Jenkinsfile
vendored
22
Jenkinsfile
vendored
|
@ -16,12 +16,14 @@ pipeline {
|
|||
}
|
||||
|
||||
steps {
|
||||
script '''
|
||||
#!/bin/bash
|
||||
script {
|
||||
sh '''
|
||||
#!/bin/bash
|
||||
|
||||
git clean -xfd
|
||||
git reset --hard
|
||||
'''
|
||||
git clean -xfd
|
||||
git reset --hard
|
||||
'''
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -31,11 +33,13 @@ pipeline {
|
|||
}
|
||||
|
||||
steps {
|
||||
script '''
|
||||
#!/bin/bash
|
||||
script {
|
||||
sh '''
|
||||
#!/bin/bash
|
||||
|
||||
mkarchiso -v -w work -o out server
|
||||
'''
|
||||
mkarchiso -v -w work -o out server
|
||||
'''
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue