Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(556)

Side by Side Diff: scripts/slave/recipes/gpu/build_and_upload.py

Issue 1408863011: infra: Remove all references to the OSX 10.10 SDK. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Remove another newly added 10_10 sdk reference. Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # This recipe is intended to control all of the GPU builders on the 5 # This recipe is intended to control all of the GPU builders on the
6 # following waterfalls: 6 # following waterfalls:
7 # chromium.gpu 7 # chromium.gpu
8 # chromium.gpu.fyi 8 # chromium.gpu.fyi
9 # chromium.webkit 9 # chromium.webkit
10 10
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 yield ( 45 yield (
46 api.test('win_release_tot_angle') + 46 api.test('win_release_tot_angle') +
47 api.properties.scheduled( 47 api.properties.scheduled(
48 build_config='Release', 48 build_config='Release',
49 mastername='chromium.gpu.fyi', 49 mastername='chromium.gpu.fyi',
50 buildername='win release tot angle builder', 50 buildername='win release tot angle builder',
51 buildnumber=572) + 51 buildnumber=572) +
52 api.platform.name('win') 52 api.platform.name('win')
53 ) 53 )
54 54
55 # Test that Mac builds on fyi bots link against the OSX 10.10 SDK.
56 yield (
57 api.test('mac_fyi_link_against_10_10') +
58 api.properties.scheduled(
59 build_config='Release',
60 mastername='chromium.gpu.fyi',
61 buildername='mac release builder',
62 buildnumber=572) +
63 api.platform.name('mac')
64 )
65
66 yield ( 55 yield (
67 api.test('compile_with_patch_fail') + 56 api.test('compile_with_patch_fail') +
68 api.properties.tryserver( 57 api.properties.tryserver(
69 mastername='tryserver.chromium.win', 58 mastername='tryserver.chromium.win',
70 buildername='win_chromium_rel_ng') + 59 buildername='win_chromium_rel_ng') +
71 api.override_step_data('analyze', api.gpu.analyze_builds_everything) + 60 api.override_step_data('analyze', api.gpu.analyze_builds_everything) +
72 api.step_data('compile (with patch)', retcode=1) + 61 api.step_data('compile (with patch)', retcode=1) +
73 api.platform.name('win') 62 api.platform.name('win')
74 ) 63 )
75 64
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 # needed to be rebuilt in a patch. 99 # needed to be rebuilt in a patch.
111 yield ( 100 yield (
112 api.test('analyze_builds_only_angle_unittests') + 101 api.test('analyze_builds_only_angle_unittests') +
113 api.properties.tryserver( 102 api.properties.tryserver(
114 mastername='tryserver.chromium.win', 103 mastername='tryserver.chromium.win',
115 buildername='win_chromium_rel_ng') + 104 buildername='win_chromium_rel_ng') +
116 api.override_step_data( 105 api.override_step_data(
117 'analyze', 106 'analyze',
118 api.gpu.analyze_builds_angle_unittests) 107 api.gpu.analyze_builds_angle_unittests)
119 ) 108 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698