Jenkins Test
Some checks failed
andreas-personal/AndysAdguardHomeBlockList/pipeline/head There was a failure building this commit

This commit is contained in:
Andreas Fahrecker 2024-04-10 17:06:03 +02:00
parent 31580824a7
commit 0749dd21de

15
Jenkinsfile vendored
View File

@ -11,10 +11,12 @@ pipeline {
branch 'main' branch 'main'
} }
steps { steps {
checkout poll: false, scm: scmGit([ dir ('AndysAdguardHomeBlocklist') {
branches: [[name: 'main']], checkout poll: false, scm: scmGit([
userRemoteConfigs: [[credentialsId: 'gitea-jenkins-user-token', url: 'https://gitea.fahrecker.com/andreas-personal/AndysAdguardHomeBlocklist.git']] branches: [[name: 'main']],
]) userRemoteConfigs: [[credentialsId: 'gitea-jenkins-user-token', url: 'https://gitea.fahrecker.com/andreas-personal/AndysAdguardHomeBlocklist.git']]
])
}
} }
} }
stage('NPM Install') { stage('NPM Install') {
@ -56,5 +58,10 @@ pipeline {
} }
} }
} }
post {
always {
deleteDir()
}
}
} }
} }