Hardcode target agent

This commit is contained in:
zontreck 2024-11-13 13:49:12 -07:00
parent 66be568255
commit d67b6c1380

66
Jenkinsfile vendored
View file

@ -1,5 +1,7 @@
pipeline { pipeline {
agent any agent {
label 'dockermain'
}
options { options {
@ -12,10 +14,6 @@ pipeline {
stages { stages {
stage("Clean Up Repo") { stage("Clean Up Repo") {
agent {
label "dockermain"
}
steps { steps {
script { script {
@ -29,10 +27,6 @@ pipeline {
} }
} }
stage("Clean Docker Caches") { stage("Clean Docker Caches") {
agent {
label "dockermain"
}
steps { steps {
script { script {
sh ''' sh '''
@ -45,9 +39,6 @@ pipeline {
} }
stage("Stop Workers") { stage("Stop Workers") {
agent {
label "dockermain"
}
steps { steps {
script { script {
@ -64,10 +55,6 @@ pipeline {
} }
stage("Build Debian Base") { stage("Build Debian Base") {
agent {
label "dockermain"
}
steps { steps {
script { script {
sh ''' sh '''
@ -81,9 +68,6 @@ pipeline {
} }
stage("Builder Debian Compiler") { stage("Builder Debian Compiler") {
agent {
label "dockermain"
}
steps { steps {
script { script {
@ -99,10 +83,6 @@ pipeline {
} }
stage("Build ADK") { stage("Build ADK") {
agent {
label "dockermain"
}
steps { steps {
script { script {
sh ''' sh '''
@ -116,10 +96,6 @@ pipeline {
} }
stage("Build Flutter") { stage("Build Flutter") {
agent {
label "dockermain"
}
steps { steps {
script { script {
sh ''' sh '''
@ -133,10 +109,6 @@ pipeline {
} }
stage("Build AppImage Layer") { stage("Build AppImage Layer") {
agent {
label "dockermain"
}
steps { steps {
script { script {
sh ''' sh '''
@ -150,10 +122,6 @@ pipeline {
} }
stage("Build Linux Node") { stage("Build Linux Node") {
agent {
label "dockermain"
}
steps { steps {
script { script {
sh ''' sh '''
@ -167,10 +135,6 @@ pipeline {
} }
stage("Build Linux Firestorm Node") { stage("Build Linux Firestorm Node") {
agent {
label "dockermain"
}
steps { steps {
script { script {
sh ''' sh '''
@ -184,10 +148,6 @@ pipeline {
} }
stage("Build Arch Base") { stage("Build Arch Base") {
agent {
label "dockermain"
}
steps { steps {
script { script {
sh ''' sh '''
@ -201,10 +161,6 @@ pipeline {
} }
stage("Build Arch Develop") { stage("Build Arch Develop") {
agent {
label "dockermain"
}
steps { steps {
script { script {
sh ''' sh '''
@ -218,10 +174,6 @@ pipeline {
} }
stage("Build DIND Image") { stage("Build DIND Image") {
agent {
label "dockermain"
}
steps { steps {
script { script {
sh ''' sh '''
@ -235,10 +187,6 @@ pipeline {
} }
stage("Build NextCloud Image") { stage("Build NextCloud Image") {
agent {
label "dockermain"
}
steps { steps {
script { script {
sh ''' sh '''
@ -253,10 +201,6 @@ pipeline {
} }
stage("Build Jenkins Image") { stage("Build Jenkins Image") {
agent {
label "dockermain"
}
steps { steps {
script { script {
sh ''' sh '''
@ -271,10 +215,6 @@ pipeline {
} }
stage("Clean Up Caches") { stage("Clean Up Caches") {
agent {
label "dockermain"
}
steps { steps {
script { script {
sh ''' sh '''