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