Lines Matching full:targets
30 _TARGETS += artifact_targets.targets()
31 _TARGETS += distribtest_targets.targets()
32 _TARGETS += package_targets.targets()
42 label_build_map["all"] = [t for t in _TARGETS] # to build all targets
57 argp = argparse.ArgumentParser(description="Runs build/test targets.")
72 help="Filter targets to build with AND semantics.",
101 # Figure out which targets to build
102 targets = [] variable
104 targets += _BUILD_MAP[label]
106 # Among targets selected by -b, filter out those that don't match the filter
107 targets = [t for t in targets if all(f in t.labels for f in args.filter)] variable
109 print("Will build %d targets:" % len(targets))
110 for target in targets:
120 for target in targets:
131 for target in targets:
137 jobset.message("START", "Building targets.", do_newline=True)
146 "SUCCESS", "All targets built successfully.", do_newline=True
149 jobset.message("FAILED", "Failed to build targets.", do_newline=True)