Fix syntax error
This commit is contained in:
parent
a4c6f91e47
commit
f467f07cf6
1 changed files with 88 additions and 65 deletions
23
Jenkinsfile
vendored
23
Jenkinsfile
vendored
|
@ -15,6 +15,8 @@ pipeline {
|
||||||
label dockermain
|
label dockermain
|
||||||
}
|
}
|
||||||
|
|
||||||
|
steps {
|
||||||
|
|
||||||
script {
|
script {
|
||||||
sh '''
|
sh '''
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
@ -24,11 +26,13 @@ pipeline {
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
stage("Clean Docker Caches") {
|
stage("Clean Docker Caches") {
|
||||||
agent {
|
agent {
|
||||||
label dockermain
|
label dockermain
|
||||||
}
|
}
|
||||||
|
|
||||||
|
steps {
|
||||||
script {
|
script {
|
||||||
sh '''
|
sh '''
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
@ -37,12 +41,14 @@ pipeline {
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage("Stop Workers") {
|
stage("Stop Workers") {
|
||||||
agent {
|
agent {
|
||||||
label dockermain
|
label dockermain
|
||||||
}
|
}
|
||||||
|
|
||||||
|
steps {
|
||||||
script {
|
script {
|
||||||
sh '''
|
sh '''
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
@ -53,12 +59,14 @@ pipeline {
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage("Build Debian Base") {
|
stage("Build Debian Base") {
|
||||||
agent {
|
agent {
|
||||||
label dockermain
|
label dockermain
|
||||||
}
|
}
|
||||||
|
|
||||||
|
steps {
|
||||||
script {
|
script {
|
||||||
sh '''
|
sh '''
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
@ -68,12 +76,14 @@ pipeline {
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage("Builder Debian Compiler") {
|
stage("Builder Debian Compiler") {
|
||||||
agent {
|
agent {
|
||||||
label dockermain
|
label dockermain
|
||||||
}
|
}
|
||||||
|
|
||||||
|
steps {
|
||||||
script {
|
script {
|
||||||
sh '''
|
sh '''
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
@ -84,12 +94,14 @@ pipeline {
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage("Build ADK") {
|
stage("Build ADK") {
|
||||||
agent {
|
agent {
|
||||||
label dockermain
|
label dockermain
|
||||||
}
|
}
|
||||||
|
|
||||||
|
steps {
|
||||||
script {
|
script {
|
||||||
sh '''
|
sh '''
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
@ -99,12 +111,14 @@ pipeline {
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage("Build Flutter") {
|
stage("Build Flutter") {
|
||||||
agent {
|
agent {
|
||||||
label dockermain
|
label dockermain
|
||||||
}
|
}
|
||||||
|
|
||||||
|
steps {
|
||||||
script {
|
script {
|
||||||
sh '''
|
sh '''
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
@ -114,12 +128,14 @@ pipeline {
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage("Build AppImage Layer") {
|
stage("Build AppImage Layer") {
|
||||||
agent {
|
agent {
|
||||||
label dockermain
|
label dockermain
|
||||||
}
|
}
|
||||||
|
|
||||||
|
steps {
|
||||||
script {
|
script {
|
||||||
sh '''
|
sh '''
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
@ -129,12 +145,14 @@ pipeline {
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage("Build Linux Node") {
|
stage("Build Linux Node") {
|
||||||
agent {
|
agent {
|
||||||
label dockermain
|
label dockermain
|
||||||
}
|
}
|
||||||
|
|
||||||
|
steps {
|
||||||
script {
|
script {
|
||||||
sh '''
|
sh '''
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
@ -144,12 +162,14 @@ pipeline {
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage("Build Linux Firestorm Node") {
|
stage("Build Linux Firestorm Node") {
|
||||||
agent {
|
agent {
|
||||||
label dockermain
|
label dockermain
|
||||||
}
|
}
|
||||||
|
|
||||||
|
steps {
|
||||||
script {
|
script {
|
||||||
sh '''
|
sh '''
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
@ -159,12 +179,14 @@ pipeline {
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage("Clean Docker Caches") {
|
stage("Clean Docker Caches") {
|
||||||
agent {
|
agent {
|
||||||
label dockermain
|
label dockermain
|
||||||
}
|
}
|
||||||
|
|
||||||
|
steps {
|
||||||
script {
|
script {
|
||||||
sh '''
|
sh '''
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
@ -174,5 +196,6 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue