Lines Matching +full:gitlab +full:- +full:ci
3 # check-patch.py: run checkpatch.pl across all commits in a branch
7 # SPDX-License-Identifier: GPL-2.0-or-later
14 namespace = "qemu-project"
20 repourl = "https://gitlab.com/%s/%s.git" % (namespace, reponame)
23 # GitLab CI environment does not give us any direct info about the
26 subprocess.check_call(["git", "remote", "add", "check-patch", repourl])
27 subprocess.check_call(["git", "fetch", "--refetch", "check-patch", "master"])
29 ancestor = subprocess.check_output(["git", "merge-base",
30 "check-patch/master", "HEAD"],
35 log = subprocess.check_output(["git", "log", "--format=%H %s",
39 subprocess.check_call(["git", "remote", "rm", "check-patch"])
49 ret = subprocess.run(["scripts/checkpatch.pl", "--terse", ancestor + "..."])