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

Side by Side Diff: scripts/slave/recipes/boringssl_docs.py

Issue 2463653002: Stop supporting old Gerrit CQ tryjob properties. (Closed)
Patch Set: review Created 4 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 """Generates BoringSSL documentation and uploads it to Cloud Storage.""" 5 """Generates BoringSSL documentation and uploads it to Cloud Storage."""
6 6
7 7
8 DEPS = [ 8 DEPS = [
9 'chromium', 9 'chromium',
10 'depot_tools/bot_update', 10 'depot_tools/bot_update',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 ) 46 )
47 47
48 yield ( 48 yield (
49 api.test('boringssl-docs-gerrit') + 49 api.test('boringssl-docs-gerrit') +
50 api.properties.tryserver( 50 api.properties.tryserver(
51 gerrit_project='boringssl', 51 gerrit_project='boringssl',
52 gerrit_url='https://boringssl-review.googlesource.com', 52 gerrit_url='https://boringssl-review.googlesource.com',
53 mastername='actually-no-master', buildername='docs', 53 mastername='actually-no-master', buildername='docs',
54 slavename='swarming-slave') 54 slavename='swarming-slave')
55 ) 55 )
56 yield (
57 api.test('boringssl-docs-gerrit-deprecated') +
58 api.properties.tryserver_gerrit(
59 gerrit_host='boringssl-review.googlesource.com',
60 full_project_name='boringssl',
61 mastername='actually-no-master', buildername='docs',
62 slavename='swarming-slave')
63 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698