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