Test
This commit is contained in:
parent
3d3fc5a70d
commit
5f43bde9b8
19
Jenkinsfile
vendored
19
Jenkinsfile
vendored
@ -11,14 +11,6 @@ pipeline {
|
|||||||
branch 'main'
|
branch 'main'
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
// dir ('build-dir') {
|
|
||||||
// checkout poll: false, scm: scmGit([
|
|
||||||
// branches: [[name: 'main']],
|
|
||||||
// userRemoteConfigs: [[credentialsId: 'gitea-jenkins-user-token', url: 'https://gitea.fahrecker.com/andreas-personal/AndysAdguardHomeBlocklist.git']]
|
|
||||||
// ])
|
|
||||||
// sh 'git checkout main'
|
|
||||||
// sh 'pwd'
|
|
||||||
// }
|
|
||||||
sh 'git checkout main'
|
sh 'git checkout main'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -28,10 +20,7 @@ pipeline {
|
|||||||
branch 'main'
|
branch 'main'
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
// dir ('build-dir') {
|
|
||||||
sh 'pwd'
|
|
||||||
sh 'npm clean-install'
|
sh 'npm clean-install'
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Compile Adblock List') {
|
stage('Compile Adblock List') {
|
||||||
@ -40,14 +29,12 @@ pipeline {
|
|||||||
branch 'main'
|
branch 'main'
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
// dir ('build-dir') {
|
sh 'mkdir -p out'
|
||||||
|
sh 'rm out/andysadguardhomeblocklist.txt'
|
||||||
sh '''
|
sh '''
|
||||||
mkdir -p out
|
|
||||||
npm run compile:test
|
|
||||||
git add out/andysadguardhomeblocklist.txt
|
git add out/andysadguardhomeblocklist.txt
|
||||||
git commit -m "Update Compiled Adblock List"
|
git commit -m "Update Compiled Adblock List"
|
||||||
'''
|
'''
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('git push') {
|
stage('git push') {
|
||||||
@ -56,7 +43,6 @@ pipeline {
|
|||||||
branch 'main'
|
branch 'main'
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
// dir ('build-dir') {
|
|
||||||
withCredentials([
|
withCredentials([
|
||||||
gitUsernamePassword(credentialsId: 'gitea-jenkins-user-token')
|
gitUsernamePassword(credentialsId: 'gitea-jenkins-user-token')
|
||||||
]) {
|
]) {
|
||||||
@ -65,7 +51,6 @@ pipeline {
|
|||||||
git push
|
git push
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user