Lines Matching full:build
63 '\'. build/envsetup.sh; lunch <build target>\'. Exiting script.')
67 def fetch_artifact(branch, build, pattern, destination='.'): argument
68 """Fetches build artifacts from Android Build server.
71 branch: string, branch to pull build artifacts from
72 build: string, build ID or "latest"
73 pattern: string, pattern of build artifact file name
74 destination: string, destination to pull build artifact to
81 if build == 'latest':
84 cmd.extend(['--bid', build])
112 def download_mapping_file(branch, build, ver, destination='.'): argument
113 """ Downloads system/etc/selinux/mapping/{ver}.cil from Android Build server.
116 branch: string, branch to pull build artifacts from (e.g. "sc-v2-dev")
117 build: string, build ID or "latest"
119 destination: string, destination to pull build artifact to
124 logging.info('Downloading %s mapping file from branch %s build %s...' %
125 (ver, branch, build))
127 fetch_artifact(branch, build, artifact_pattern, temp_dir)
153 'build/soong/soong_ui.bash',
198 help='Branch to pull build from. e.g. "sc-v2-dev"')
199 parser.add_argument('--build', required=True, help='Build ID, or "latest"')
242 args.branch, args.build, args.target_version, destination=temp_dir)
247 # Step 2. Build base policy files and parse latest mapping files
340 error_msg += ('Please make sure the source tree and the build ID is'