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

Unified Diff: scripts/slave/recipes/blimp/integration.py

Issue 2415963004: Fix compile on the Blimp Client Engine Integration bot (Closed)
Patch Set: nit Created 4 years, 2 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | scripts/slave/recipes/blimp/integration.expected/Blimp_Android_Tester_test_pass.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipes/blimp/integration.py
diff --git a/scripts/slave/recipes/blimp/integration.py b/scripts/slave/recipes/blimp/integration.py
index a07e7ba2129d421e05bec0ea525ac1638ae83c68..4e24fda91a1e9659b2a1fb8c73b5ee73112756e7 100644
--- a/scripts/slave/recipes/blimp/integration.py
+++ b/scripts/slave/recipes/blimp/integration.py
@@ -39,11 +39,10 @@ BUILDERS = freeze({
REPO_URL = 'https://chromium.googlesource.com/chromium/src.git'
def RunSteps(api):
- android_build = api.path['slave_build'].join('src', 'out-android', 'Debug')
- linux_build = api.path['slave_build'].join('src', 'out-linux', 'Debug')
mastername = api.properties.get('mastername')
buildername = api.properties.get('buildername')
builder = BUILDERS[mastername][buildername]
+ api.chromium.set_config('chromium')
api.chromium_android.configure_from_properties(
builder['config'],
REPO_NAME='src',
@@ -51,7 +50,6 @@ def RunSteps(api):
INTERNAL=False,
BUILD_CONFIG=builder['target'])
- api.chromium.set_config('chromium')
api.gclient.set_config(builder['gclient_config'])
api.gclient.apply_config(builder['gclient_apply_config'])
api.bot_update.ensure_checkout()
@@ -59,6 +57,11 @@ def RunSteps(api):
api.chromium_android.clean_local_files()
api.chromium.runhooks()
+ android_build = api.path['checkout'].join(
+ 'out-android', api.chromium.c.build_config_fs)
+ linux_build = api.path['checkout'].join(
+ 'out-linux', api.chromium.c.build_config_fs)
+
api.chromium.run_mb(mastername=mastername,
buildername=buildername,
build_dir=linux_build,
@@ -77,7 +80,7 @@ def GenTests(api):
sanitize = lambda s: ''.join(c if c.isalnum() else '_' for c in s)
yield (
- api.test('%s_test_pass' % sanitize('Blimp Android Tester')) +
+ api.test('%s_test_pass' % sanitize('Blimp Client Engine Integration')) +
api.properties.generic(
buildername='Blimp Client Engine Integration',
mastername='chromium.fyi')
« no previous file with comments | « no previous file | scripts/slave/recipes/blimp/integration.expected/Blimp_Android_Tester_test_pass.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698