blob: 8f4a1939752ab49d6885a6b69362146fbf537b1d (
plain)
1
2
3
4
5
6
7
8
9
10
|
jenkins-jobs update --recursive --delete-old jjb/
# Submit patches for any jobs that can be auto updated
function submitJJB {
git commit -asm "Update automated project templates"
git push origin HEAD:refs/for/master
}
gitdir=$(git rev-parse --git-dir); scp -p -P 29418 rotterdam-jobbuilder@gerrit.projectrotterdam.info:hooks/commit-msg ${gitdir}/hooks/
git diff --exit-code || submitJJB
|