blob: 78dd0a458fcccd84423f72a1382b96a4ca93aaad [file] [log] [blame]
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from . import steps
SPEC = {
'settings': {
'build_gs_bucket': 'chromium-gpu-archive',
},
'builders': {
'GPU Win Builder': {
'chromium_config': 'chromium',
'chromium_apply_config': [
'goma_high_parallel',
'goma_enable_global_file_stat_cache',
'mb',
],
'gclient_config': 'chromium',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 32,
},
'bot_type': 'builder',
'testing': {
'platform': 'win',
},
'checkout_dir': 'win',
},
'GPU Win Builder (dbg)': {
'chromium_config': 'chromium',
'chromium_apply_config': [
'mb',
],
'gclient_config': 'chromium',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Debug',
'TARGET_BITS': 32,
},
'bot_type': 'builder',
'testing': {
'platform': 'win',
},
},
'Win10 Release (NVIDIA)': {
'chromium_config': 'chromium',
'chromium_apply_config': [
'goma_high_parallel',
'goma_enable_global_file_stat_cache',
'mb',
],
'gclient_config': 'chromium',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 32,
},
'bot_type': 'tester',
'parent_buildername': 'GPU Win Builder',
'testing': {
'platform': 'win',
},
},
'Win10 Debug (NVIDIA)': {
'chromium_config': 'chromium',
'chromium_apply_config': [
'mb',
],
'gclient_config': 'chromium',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Debug',
'TARGET_BITS': 32,
},
'bot_type': 'tester',
'parent_buildername': 'GPU Win Builder (dbg)',
'testing': {
'platform': 'win',
},
},
'GPU Linux Builder': {
'chromium_config': 'chromium',
'chromium_apply_config': [
'mb',
'goma_high_parallel',
],
'gclient_config': 'chromium',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 64,
},
'bot_type': 'builder',
'testing': {
'platform': 'linux',
},
# 5% of the linux-rel builds will use exparchive instead of
# batcharchive to allow comparison of performance.
'force_exparchive': 5,
'checkout_dir': 'linux',
},
# TODO(crbug.com/930364): Remove once linux-coverage-rel is folded into
# linux-rel or ended up not being able to fold.
'GPU Linux Builder Code Coverage': {
'chromium_config': 'chromium',
'chromium_apply_config': [
'mb',
'goma_high_parallel',
],
'gclient_config': 'chromium',
'gclient_apply_config': ['use_clang_coverage'],
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 64,
},
'chromium_tests_apply_config': [
'code_coverage_trybot',
],
'bot_type': 'builder',
'testing': {
'platform': 'linux',
},
'checkout_dir': 'linux',
},
'GPU Linux Builder (dbg)': {
'chromium_config': 'chromium',
'chromium_apply_config': [
'mb',
],
'gclient_config': 'chromium',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Debug',
'TARGET_BITS': 64,
},
'bot_type': 'builder',
'testing': {
'platform': 'linux',
},
},
'Linux Release (NVIDIA)': {
'chromium_config': 'chromium',
'chromium_apply_config': [
'mb',
'goma_high_parallel',
],
'gclient_config': 'chromium',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 64,
},
'bot_type': 'tester',
'parent_buildername': 'GPU Linux Builder',
'testing': {
'platform': 'linux',
},
},
# TODO(crbug.com/930364): Remove once linux-coverage-rel is folded into
# linux-rel or ended up not being able to fold.
'Linux Release Code Coverage (NVIDIA)': {
'chromium_config': 'chromium',
'chromium_apply_config': [
'mb',
'goma_high_parallel',
],
'gclient_config': 'chromium',
'gclient_apply_config': ['use_clang_coverage'],
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 64,
},
'chromium_tests_apply_config': [
'code_coverage_trybot',
],
'bot_type': 'tester',
'parent_buildername': 'GPU Linux Builder Code Coverage',
'testing': {
'platform': 'linux',
},
},
'Linux Debug (NVIDIA)': {
'chromium_config': 'chromium',
'chromium_apply_config': ['mb'],
'gclient_config': 'chromium',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Debug',
'TARGET_BITS': 64,
},
'bot_type': 'tester',
'parent_buildername': 'GPU Linux Builder (dbg)',
'testing': {
'platform': 'linux',
},
},
'GPU Mac Builder': {
'chromium_config': 'chromium',
'chromium_apply_config': [
'mb',
],
'gclient_config': 'chromium',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 64,
},
'bot_type': 'builder',
'testing': {
'platform': 'mac',
},
'checkout_dir': 'mac',
},
'GPU Mac Builder (dbg)': {
'chromium_config': 'chromium',
'chromium_apply_config': [
'mb',
],
'gclient_config': 'chromium',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Debug',
'TARGET_BITS': 64,
},
'bot_type': 'builder',
'testing': {
'platform': 'mac',
},
},
'Mac Release (Intel)': {
'chromium_config': 'chromium',
'chromium_apply_config': [
'mb',
],
'gclient_config': 'chromium',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 64,
},
'bot_type': 'tester',
'parent_buildername': 'GPU Mac Builder',
'testing': {
'platform': 'mac',
},
},
'Mac Debug (Intel)': {
'chromium_config': 'chromium',
'chromium_apply_config': [
'mb',
],
'gclient_config': 'chromium',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Debug',
'TARGET_BITS': 64,
},
'bot_type': 'tester',
'parent_buildername': 'GPU Mac Builder (dbg)',
'testing': {
'platform': 'mac',
},
},
'Mac Retina Release (AMD)': {
'chromium_config': 'chromium',
'chromium_apply_config': [
'mb',
],
'gclient_config': 'chromium',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 64,
},
'bot_type': 'tester',
'parent_buildername': 'GPU Mac Builder',
'testing': {
'platform': 'mac',
},
},
'Mac Retina Debug (AMD)': {
'chromium_config': 'chromium',
'chromium_apply_config': [
'mb',
],
'gclient_config': 'chromium',
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Debug',
'TARGET_BITS': 64,
},
'bot_type': 'tester',
'parent_buildername': 'GPU Mac Builder (dbg)',
'testing': {
'platform': 'mac',
},
},
'Android Release (Nexus 5X)': {
'chromium_config': 'android',
'chromium_apply_config': [
'download_vr_test_apks',
# This is specified in order to match the same configuration
# in 'chromium.android:Marshmallow Phone Tester (rel)'.
'goma_high_parallel',
'mb',
],
'gclient_config': 'chromium',
'gclient_apply_config': ['android'],
'chromium_config_kwargs': {
'BUILD_CONFIG': 'Release',
'TARGET_BITS': 64,
'TARGET_PLATFORM': 'android',
},
'android_config': 'main_builder',
'bot_type': 'builder_tester',
'testing': {
'platform': 'linux',
},
},
},
}