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:18:39 +02:00
parent a801aaa33c
commit 012ff49d87

36
Jenkinsfile vendored
View File

@ -26,8 +26,10 @@ pipeline {
branch 'main'
}
steps {
sh 'pwd'
sh 'npm clean-install'
dir ('build-dir') {
sh 'pwd'
sh 'npm clean-install'
}
}
}
stage('Compile Adblock List') {
@ -36,12 +38,14 @@ pipeline {
branch 'main'
}
steps {
sh '''
mkdir -p out
npm run compile:test
git add out/andysadguardhomeblocklist.txt
git commit -m "Update Compiled Adblock List"
'''
dir ('build-dir') {
sh '''
mkdir -p out
npm run compile:test
git add out/andysadguardhomeblocklist.txt
git commit -m "Update Compiled Adblock List"
'''
}
}
}
stage('git push') {
@ -50,13 +54,15 @@ pipeline {
branch 'main'
}
steps {
withCredentials([
gitUsernamePassword(credentialsId: 'gitea-jenkins-user-token')
]) {
sh '''
git pull
git push -u origin main
'''
dir ('build-dir') {
withCredentials([
gitUsernamePassword(credentialsId: 'gitea-jenkins-user-token')
]) {
sh '''
git pull
git push -u origin main
'''
}
}
}
}