remove agent labels
All checks were successful
andreas-personal/AndysAdguardHomeBlocklist/pipeline/head This commit looks good

This commit is contained in:
Andreas Fahrecker 2024-08-07 15:47:06 +02:00
parent a1b54eeeed
commit 3782dfda95
2 changed files with 0 additions and 9 deletions

6
Jenkinsfile vendored
View File

@ -28,9 +28,6 @@ pipeline {
beforeAgent true; beforeAgent true;
branch 'main' branch 'main'
} }
agent {
label 'linux'
}
environment { environment {
def tag = sh(returnStdout: true, script: 'git rev-parse --short=10 HEAD').trim() def tag = sh(returnStdout: true, script: 'git rev-parse --short=10 HEAD').trim()
PACKAGE_REGISTRY_CREDENTIALS = credentials('gitea-package-registry-jenkins-user') PACKAGE_REGISTRY_CREDENTIALS = credentials('gitea-package-registry-jenkins-user')
@ -68,9 +65,6 @@ pipeline {
beforeAgent true; beforeAgent true;
branch 'main' branch 'main'
} }
agent {
label 'linux'
}
steps { steps {
sh 'curl -H "Authorization: Bearer 2ykoFnTr3FWcqMLvaEthR79ffNfbTgzo" 10.55.0.2:8181/v1/update' sh 'curl -H "Authorization: Bearer 2ykoFnTr3FWcqMLvaEthR79ffNfbTgzo" 10.55.0.2:8181/v1/update'
} }

View File

@ -39,7 +39,4 @@ task createOutDir {
task compileAdblockList(type: NpmTask) { task compileAdblockList(type: NpmTask) {
dependsOn npmInstall, createOutDir dependsOn npmInstall, createOutDir
args = ['run', 'compile'] args = ['run', 'compile']
doFirst {
file("out").mkdirs()
}
} }