New builds
This commit is contained in:
parent
1143990d57
commit
6589b7173d
|
|
@ -17,7 +17,8 @@ pipeline {
|
|||
}
|
||||
steps {
|
||||
script {
|
||||
get_chibi_stages()
|
||||
def stages = get_chibi_stages()
|
||||
parallel stages
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -31,7 +32,8 @@ pipeline {
|
|||
}
|
||||
steps {
|
||||
script {
|
||||
get_sagittarius_stages()
|
||||
def stages = get_sagittarius_stages()
|
||||
parallel stages
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -40,7 +42,6 @@ pipeline {
|
|||
|
||||
def get_chibi_stages() {
|
||||
return {
|
||||
script {
|
||||
stage('init') {
|
||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||
sh 'apt-get update && apt-get install -y git ca-certificates gcc make libffi-dev'
|
||||
|
|
@ -61,12 +62,10 @@ def get_chibi_stages() {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
def get_sagittarius_stages() {
|
||||
return {
|
||||
script {
|
||||
stage('init') {
|
||||
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||
sh 'apt-get update && apt-get install -y git ca-certificates gcc make libffi-dev'
|
||||
|
|
@ -87,6 +86,5 @@ def get_sagittarius_stages() {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue