Fix syntax error

This commit is contained in:
zontreck 2024-09-13 01:33:35 -07:00
parent a4c6f91e47
commit f467f07cf6

23
Jenkinsfile vendored
View file

@ -15,6 +15,8 @@ pipeline {
label dockermain
}
steps {
script {
sh '''
#!/bin/bash
@ -24,11 +26,13 @@ pipeline {
'''
}
}
}
stage("Clean Docker Caches") {
agent {
label dockermain
}
steps {
script {
sh '''
#!/bin/bash
@ -37,12 +41,14 @@ pipeline {
'''
}
}
}
stage("Stop Workers") {
agent {
label dockermain
}
steps {
script {
sh '''
#!/bin/bash
@ -53,12 +59,14 @@ pipeline {
'''
}
}
}
stage("Build Debian Base") {
agent {
label dockermain
}
steps {
script {
sh '''
#!/bin/bash
@ -68,12 +76,14 @@ pipeline {
'''
}
}
}
stage("Builder Debian Compiler") {
agent {
label dockermain
}
steps {
script {
sh '''
#!/bin/bash
@ -84,12 +94,14 @@ pipeline {
'''
}
}
}
stage("Build ADK") {
agent {
label dockermain
}
steps {
script {
sh '''
#!/bin/bash
@ -99,12 +111,14 @@ pipeline {
'''
}
}
}
stage("Build Flutter") {
agent {
label dockermain
}
steps {
script {
sh '''
#!/bin/bash
@ -114,12 +128,14 @@ pipeline {
'''
}
}
}
stage("Build AppImage Layer") {
agent {
label dockermain
}
steps {
script {
sh '''
#!/bin/bash
@ -129,12 +145,14 @@ pipeline {
'''
}
}
}
stage("Build Linux Node") {
agent {
label dockermain
}
steps {
script {
sh '''
#!/bin/bash
@ -144,12 +162,14 @@ pipeline {
'''
}
}
}
stage("Build Linux Firestorm Node") {
agent {
label dockermain
}
steps {
script {
sh '''
#!/bin/bash
@ -159,12 +179,14 @@ pipeline {
'''
}
}
}
stage("Clean Docker Caches") {
agent {
label dockermain
}
steps {
script {
sh '''
#!/bin/bash
@ -174,5 +196,6 @@ pipeline {
}
}
}
}
}