| /openbmc/u-boot/tools/buildman/ |
| H A D | control.py | 25 def GetActionSummary(is_summary, commits, selected, options): argument 31 if commits: 32 count = len(commits) 65 commits = series.commits 67 commits = None 68 print GetActionSummary(False, commits, boards_selected, 71 if commits: 72 for upto in range(0, len(series.commits), options.step): 73 commit = series.commits[upto] 274 options.step = len(series.commits) - 1 [all …]
|
| H A D | test.py | 80 commits = [ variable 113 self.commits = [] 115 for commit_info in commits: 122 self.commits.append(comm) 200 build.BuildBoards(self.commits, board_selected, keep_outputs=False, 210 self.assertEqual(count, len(commits) * len(boards) + 2) 212 build.ShowSummary(self.commits, board_selected) 217 self.assertEqual(lines[0].text, '01: %s' % commits[0][1]) 220 self.assertEqual(lines[1].text, '02: %s' % commits[1][1]) 236 self.assertEqual(lines[6].text, '03: %s' % commits[2][1]) [all …]
|
| H A D | builder.py | 441 self.ProduceResultSummary(result.commit_upto, self.commits, 478 if self.commits: 479 commit = self.commits[commit_upto] 1415 def ProduceResultSummary(self, commit_upto, commits, board_selected): argument 1422 if commits: 1424 commits[commit_upto].subject) 1432 def ShowSummary(self, commits, board_selected): argument 1442 self.commit_count = len(commits) if commits else 1 1443 self.commits = commits 1448 self.ProduceResultSummary(commit_upto, commits, board_selected) [all …]
|
| H A D | builderthread.py | 46 self.commits = [] 191 if self.builder.commits: 192 commit = self.builder.commits[commit_upto] 426 if job.commits: 431 for commit_upto in range(0, len(job.commits), job.step):
|
| H A D | README | 25 which boards fail on which commits, and which errors come up. It aims 59 Buildman is designed to build entire git branches, i.e. muliple commits. It 61 rebuild commits which have changed (and remove its old results for that 100 individual commits at present, unless (maybe) you point it at an empty 101 branch. Put all your commits in a branch, set the branch's upstream to a 110 Buildman is optimised for building many commits at once, for many boards. 113 a few commits or boards, it will be pretty slow. As a tip, if you don't 164 steps should get you started with a repo and some commits for testing. 169 $ # Add some commits to the branch, reading for testing 197 to build x86 commits. [all …]
|
| /openbmc/openbmc/poky/meta/lib/patchtest/tests/ |
| H A D | test_mbox.py | 46 for commit in self.commits: 57 for commit in self.commits: 72 for commit in self.commits: 113 for commit in self.commits: 141 for commit in self.commits: 150 for commit in self.commits: 155 for commit in self.commits: 167 for commit in self.commits: 173 for commit in self.commits:
|
| /openbmc/openbmc-build-scripts/config/ |
| H A D | .gitlint | 16 # By default gitlint will ignore merge, revert, fixup and squash commits. 17 # ignore-merge-commits=true 18 # ignore-revert-commits=true 19 # ignore-fixup-commits=true 20 # ignore-squash-commits=true 33 # fail-without-commits=true 40 # contrib=contrib-title-conventional-commits,CC1 74 # Whether to ignore this rule on merge commits (which typically only have a title) 75 ignore-merge-commits=false 95 # Ignore certain rules for commits of which the title matches a regex [all …]
|
| /openbmc/qemu/scripts/ |
| H A D | get_maintainer.pl | 1260 my $commits; 1268 $commits = grep(/$pattern/, @lines); # of commits 1279 return ($commits, @$signers_ref); 1309 my @commits = (); 1315 push(@commits, $1); 1319 return @commits; 1325 my @commits = (); 1327 return @commits if (!(-f $file)); 1343 push(@commits, $all_commits[$i]); 1355 push(@commits, vcs_save_commits($cmd)); [all …]
|
| /openbmc/qemu/.gitlab-ci.d/ |
| H A D | check-dco.py | 44 commits = [] variable 46 commits = [[c[0:40], c[41:]] for c in log.strip().split("\n")] 48 for sha, subject in commits:
|
| /openbmc/openbmc-tools/tof-voters/libvoters/subcmd/ |
| H A D | report.py | 29 commits = json.load(commits_file) 34 contributions = commits | reviews 37 user_commits = len(commits.get(user, {}).get("changes", []))
|
| /openbmc/u-boot/scripts/ |
| H A D | get_maintainer.pl | 1547 my $commits; 1561 $commits = grep(/$pattern/, @lines); # of commits 1581 return ($commits, $signers_ref, $authors_ref, \@stats); 1615 my @commits = (); 1621 push(@commits, $1); 1625 return @commits; 1631 my @commits = (); 1633 return @commits if (!(-f $file)); 1649 push(@commits, $all_commits[$i]); 1661 push(@commits, vcs_save_commits($cmd)); [all …]
|
| H A D | mailmapper | 77 commits, name = line.split(None, 1) 81 commits_per_name[name] = int(commits)
|
| /openbmc/openbmc/meta-openembedded/meta-oe/classes/ |
| H A D | gitpkgv.bbclass | 93 commits = bb.fetch2.runfetchcmd( 97 if commits != "": 100 f.write("%d\n" % int(commits)) 102 commits = "0" 105 commits = f.readline(128).strip() 114 ver = "0.0-%s-g%s" % (commits, vars['rev'][:7]) 116 ver = "%s+%s" % (commits, vars['rev'][:7])
|
| /openbmc/openbmc-tools/tof-voters/ |
| H A D | README.md | 8 The tool will query Gerrit for commits and reviews, process them, and generate a 15 ./voters analyze-commits --before "2022-01-01" --after "2021-06-30"
|
| /openbmc/u-boot/tools/patman/ |
| H A D | series.py | 35 self.commits = [] 92 self.commits.append(commit) 114 commit = self.commits[upto] 227 for commit in self.commits:
|
| H A D | func_test.py | 59 for i, commit in enumerate(series.commits): 163 self.assertEqual('Cleaned %s patches' % len(series.commits), lines[0]) 171 for i, commit in enumerate(series.commits):
|
| H A D | README | 18 It is configured almost entirely by tags it finds in your commits. 26 in one of your commits, the series will be sent there. 39 - Add tags into the commits within each branch to indicate where the 44 automatically determine the number of commits in it (optional) 245 By adding your change lists into your commits it is easier to 314 The basic workflow is to create your commits, add some tags to the top 399 and use git rebase -i to edit the commits, dropping the wip one. You add 418 Finally, you need to add a change log to the two commits you changed. You 429 commits and combine them into the cover letter, if you have one. So finally 430 you have a new series of commits: [all …]
|
| /openbmc/openbmc/meta-yadro/recipes-phosphor/ipmi/phosphor-ipmi-host/ |
| H A D | 0003-Fix-version-parsing-update-AUX-revision-info.patch | 142 - uint16_t commits; 240 - // Capture the number of commits on top of the minor tag. 249 - commits = std::stoi(token.substr(0, location), 0, 16); 250 - rev.d[0] = (commits >> 8) | (commits << 8); 290 - commits = (!token.empty()) ? 1 : 0; 294 - rev.d[1] = (commits >> 8) | (commits << 8);
|
| /openbmc/phosphor-host-ipmid/docs/ |
| H A D | contributing.md | 10 A good commit does exactly one thing. We prefer many small, atomic commits to 18 Often, creating small commits this way results in a number of commits which are 19 dependent on prior commits; Gerrit handles this situation well, so feel free to 20 push commits which are based on your change still in review. However, when 26 When pushing a stack of patches (current branch is >1 commits ahead of 27 origin/master), these commits will show up with that same relationship in
|
| /openbmc/openbmc/meta-yadro/recipes-core/os-release/ |
| H A D | os-release.bbappend | 66 # represent the number of commits since branch creation 81 # the number of commits since the tag. 87 # commits. Release candidates and development releases are also
|
| /openbmc/qemu/contrib/gitdm/ |
| H A D | aliases | 22 # weird commits 46 # Next, translate a few commits where mailman rewrote the From: line due
|
| /openbmc/u-boot/scripts/dtc/ |
| H A D | update-dtc-source.sh | 73 This adds the following commits from upstream:
|
| /openbmc/openbmc-build-scripts/scripts/ |
| H A D | build-unit-test-docker | 483 commits = json.loads( 491 if len(commits) == 0: 493 if len(commits) > 1: 495 f"{self.package} has more than 1 commit under {gerrit_topic}; using lastest upstream: {len(commits)}", 500 change_id = commits[0]["id"]
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/netperf/files/ |
| H A D | netserver_permissions.patch | 9 Upstream-Status: Pending [https://github.com/HewlettPackard/netperf/pull/27/commits/78c9ae7d9a67355…
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-bsp/i2cdev/i2cdev/ |
| H A D | fix-lsi2c-makefile.patch | 8 Upstream-Status: Submitted [https://github.com/costad2/i2cdev/pull/2/commits/43f15e97d869797dbfeaac…
|