limit CI builds to static-dockerhub branch

pull/7/head
Andrew Dolgov 1 year ago
parent baf7f5a23a
commit 0d39b4eabe
No known key found for this signature in database
GPG Key ID: 1A56B4FA25D4AF2A

13
Jenkinsfile vendored

@ -47,6 +47,9 @@ pipeline {
}
}
stage('build') {
when {
branch "static-dockerhub"
}
environment {
REPO_TIMESTAMP = sh(returnStdout: true,
script: "git --git-dir 'tt-rss/.git' --no-pager log --pretty='%ct' -n1 HEAD")
@ -108,6 +111,9 @@ pipeline {
}
}
stage('phpdoc') {
when {
branch "static-dockerhub"
}
steps {
sh """
docker run --rm \
@ -131,13 +137,6 @@ pipeline {
}
}
}
/*stage('cleanup') {
steps {
sh """
docker system prune -f -a
"""
}
}*/
}
post {

Loading…
Cancel
Save