Lines Matching +full:buildman +full:- +full:toolchains

4 # SPDX-License-Identifier:      GPL-2.0+
23 # Buildman settings file
27 [toolchain-alias]
29 [make-flags]
32 vboot=USE_STDINT=1 VBOOT_DEBUG=1 MAKEFLAGS_VBOOT=DEBUG=1 CFLAGS_EXTRA_VBOOT=-DUNROLL_LOOPS VBOOT_SO…
46 39403bb patman: Use --no-pager' to stop git from forking a pager
47 db6e6f2 patman: Remove the -a option
57 buildman: refactor help message
59 "buildman [options]" is displayed by default.
64 Besides, "-b <branch>" is not mandatory since commit fea5858e.
67 Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
71 Date: Thu Aug 14 16:48:25 2014 -0600
75 This option is currently not supported, but needs to be, for buildman to
78 Series-changes: 7
79 - Add new patch to fix the 'reverse' bug
81 Series-version: 8
83 Change-Id: I79078f792e8b390b8a1272a8023537821d45feda
84 Reported-by: York Sun <yorksun@freescale.com>
85 Signed-off-by: Simon Glass <sjg@chromium.org>
90 Date: Sat Aug 9 11:44:32 2014 -0600
94 This code came from a different project with 2-character indentation. Fix
95 it for U-Boot.
97 Series-changes: 6
98 - Add new patch to fix indentation in teminal.py
100 Change-Id: I5a74d2ebbb3cc12a665f5c725064009ac96e8a34
101 Signed-off-by: Simon Glass <sjg@chromium.org>
106 Date: Sat Aug 9 11:08:24 2014 -0600
113 ./tools/patman/patman --test
116 Series-changes: 6
117 - Add new patch to fix patman unit tests
119 Change-Id: I3d2ca588f4933e1f9d6b1665a00e4ae58269ff3b
124 Date: Sat Aug 9 12:06:02 2014 -0600
126 patman: Remove the -a option
132 Series-changes: 6
133 - Add new patch to remove patman's -a option
135 Suggested-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
136 Change-Id: I5821a1c75154e532c46513486ca40b808de7e2cc
141 Date: Thu Aug 14 21:50:52 2014 -0600
143 patman: Use --no-pager' to stop git from forking a pager
148 Date: Fri Aug 22 15:57:39 2014 -0600
156 Series-changes: 9
157 - Add new patch to avoid changing the order of tags
159 Series-version: 9
161 Suggested-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
162 Change-Id: Ib1518588c1a189ad5c3198aae76f8654aed8d0db
168 """Functional test for buildman.
170 This aims to test from just below the invocation of buildman (parsing
172 emd-to-end test, as it mocks git, make and the tool chain. But this
175 very limited subset of 'git' arguments is supported - anything
185 self._toolchains.Add('arm-gcc', test=False)
186 self._toolchains.Add('powerpc-gcc', test=False)
214 self._toolchains = toolchain.Toolchains()
224 result = control.DoBuildman(options, args, toolchains=self._toolchains,
232 result = self._RunBuildman('-H')
240 result = self._RunBuildman('-h')
257 if args[-1] == '--':
258 args = args[:-1]
259 if '-n0' in args:
261 elif args[-1] == 'upstream/master..%s' % self._test_branch:
263 elif args[:3] == ['--no-color', '--no-decorate', '--reverse']:
264 if args[-1] == self._test_branch:
292 This uses a hacked-up parser.
297 git_args = [] # Top-level arguments to git itself
298 sub_cmd = None # Git sub-command selected
299 args = [] # Arguments to the git sub-command
303 elif arg[0] == '-':
306 if git_args and git_args[-1] in ['--git-dir', '--work-tree']:
335 The command is in kwargs['pipe-list'], as a list of pipes, each a
345 if pipe_list[1] == ['wc', '-l']:
355 elif cmd == './scripts/show-gnu-make':
410 """Test that buildman aborts when there are no boards"""
416 """Very simple test to invoke buildman on the current source"""
426 self._RunControl('-b', 'badbranch')
429 """Test that missing toolchains are detected"""
431 ret_code = self._RunControl('-b', TEST_BRANCH)
434 # Buildman always builds the upstream commit as well
439 # Only sandbox should succeed, the others don't have toolchains
441 self._total_builds - self._commits)
454 """Test building a branch with all toolchains present"""
455 self._RunControl('-b', TEST_BRANCH)
461 self._RunControl('-b', TEST_BRANCH, '-c2')
468 """Test building a branch twice - the second time should do nothing"""
469 self._RunControl('-b', TEST_BRANCH)
474 self._RunControl('-b', TEST_BRANCH, clean_dir=False)
480 """The -f flag should force a rebuild"""
481 self._RunControl('-b', TEST_BRANCH)
483 self._RunControl('-b', TEST_BRANCH, '-f', clean_dir=False)
488 """The -f flag should force a rebuild"""
489 self._RunControl('-b', TEST_BRANCH, '-C')
496 self._RunControl('-b', TEST_BRANCH)
504 self._RunControl('-b', TEST_BRANCH, clean_dir=False)
509 # Now use the -F flag to force rebuild of the bad commit
510 self._RunControl('-b', TEST_BRANCH, '-F', clean_dir=False)
518 self._RunControl('-b', self._test_branch, clean_dir=False)