aboutsummaryrefslogtreecommitdiff
path: root/support/update-coverity-branch.py
blob: 519f5d00d285a5208b656a1fcfb7e77a1bece5fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
# Update the coverity branch from the master branch.
# It is not done automatically because Coverity Scan limits
# the number of submissions per day.

from __future__ import print_function
import shutil, tempfile
from subprocess import check_output, STDOUT

class Git:
    def __init__(self, dir):
        self.dir = dir

    def __call__(self, *args):
        output = check_output(['git'] + list(args), cwd=self.dir, stderr=STDOUT)
        print(output)
        return output

dir = tempfile.mkdtemp()
try:
    git = Git(dir)
    git('clone', '-b', 'coverity', 'git@github.com:fmtlib/fmt.git', dir)
    output = git('merge', '-X', 'theirs', '--no-commit', 'origin/master')
    if 'Fast-forward' not in output:
        git('reset', 'HEAD', '.travis.yml')
        git('checkout', '--', '.travis.yml')
        git('commit', '-m', 'Update coverity branch')
    git('push')
finally:
    shutil.rmtree(dir)