• Home
  • Raw
  • Download

Lines Matching +full:linux +full:- +full:format

7 #      http://www.apache.org/licenses/LICENSE-2.0
50 'exclude_platforms': ['windows-amd64']
60 'exclude_platforms': ['windows-amd64']
74 (os, cpu) = platform.split('-')
76 if os not in ('android', 'linux', 'mac'):
77 return base_args # No cross-compiling on Windows.
79 return base_args + ' target_os="{}" target_cpu="{}"'.format(os, cpu)
97 gcs_target_path = '{}/{}/{}'.format(gcs_upload_dir, platform, artifact_ext)
98 api.gsutil.upload(source_path, 'perfetto-luci-artifacts', gcs_target_path)
101 cipd_pkg_name = 'perfetto/{}/{}'.format(artifact['name'], platform)
107 cipd_pkg_file_name = '{}-{}.cipd'.format(artifact['name'], platform)
144 ['python3', 'tools/gn', 'gen', out_dir, '--args={}'.format(args)])
145 api.step('ninja', ['python3', 'tools/ninja', '-C', out_dir] + targets)
173 api.step('fetch', ['git', 'fetch', '--tags', repository, ref])
178 'rev-parse', ['git', 'rev-parse', 'HEAD'],
187 extra_args += ['--android']
189 # Pull the cross-toolchains for building for linux-arm{,64}.
190 extra_args += ['--linux-arm']
191 api.step('build-deps', ['python3', 'tools/install-build-deps'] + extra_args)
194 BuildForPlatform(api, ctx, 'windows-amd64')
196 with api.step.nest('mac-amd64'):
197 BuildForPlatform(api, ctx, 'mac-amd64')
198 with api.step.nest('mac-arm64'):
199 BuildForPlatform(api, ctx, 'mac-arm64')
201 with api.step.nest('android-arm'):
202 BuildForPlatform(api, ctx, 'android-arm')
203 with api.step.nest('android-arm64'):
204 BuildForPlatform(api, ctx, 'android-arm64')
205 with api.step.nest('android-x86'):
206 BuildForPlatform(api, ctx, 'android-x86')
207 with api.step.nest('android-x64'):
208 BuildForPlatform(api, ctx, 'android-x64')
210 with api.step.nest('linux-amd64'):
211 BuildForPlatform(api, ctx, 'linux-amd64')
212 with api.step.nest('linux-arm'):
213 BuildForPlatform(api, ctx, 'linux-arm')
214 with api.step.nest('linux-arm64'):
215 BuildForPlatform(api, ctx, 'linux-arm64')
219 for target in ('android', 'linux', 'mac', 'win'):
220 host = 'linux' if target == 'android' else target
224 builder='perfetto-official-builder-%s' % target,
228 yield (api.test('ci_tag') + api.platform.name('linux') +
235 yield (api.test('unofficial') + api.platform.name('linux') +