blob: 05707d2b868e6b524296cdc4e26570acbe6c2f7d (
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.fd.io:hooks/commit-msg ${gitdir}/hooks/
git diff --exit-code || submitJJB
|