| OLD | NEW |
| 1 # vim: ft=python: | 1 # vim: ft=python: |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 from buildbot.changes import svnpoller | 6 from buildbot.changes import svnpoller |
| 7 from buildbot.scheduler import Dependent | 7 from buildbot.scheduler import Dependent |
| 8 from buildbot.scheduler import Nightly | 8 from buildbot.scheduler import Nightly |
| 9 from buildbot.scheduler import Periodic | 9 from buildbot.scheduler import Periodic |
| 10 from buildbot.scheduler import Scheduler | 10 from buildbot.scheduler import Scheduler |
| (...skipping 1484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1495 # This is necessary for the archive_build step to work. | 1495 # This is necessary for the archive_build step to work. |
| 1496 'remoting_webapp', | 1496 'remoting_webapp', |
| 1497 ], | 1497 ], |
| 1498 factory_properties={ | 1498 factory_properties={ |
| 1499 'archive_build': True, | 1499 'archive_build': True, |
| 1500 'build_url': chromium_linux_arm_archive, | 1500 'build_url': chromium_linux_arm_archive, |
| 1501 'trigger': 'chromium_linux_arm', | 1501 'trigger': 'chromium_linux_arm', |
| 1502 'gs_bucket': 'gs://chromium-browser-snapshots', | 1502 'gs_bucket': 'gs://chromium-browser-snapshots', |
| 1503 'gs_acl': 'public-read', | 1503 'gs_acl': 'public-read', |
| 1504 'gclient_env': { | 1504 'gclient_env': { |
| 1505 'AR': 'arm-linux-gnueabi-ar', | 1505 'AR': 'arm-linux-gnueabihf-ar', |
| 1506 'AS': 'arm-linux-gnueabi-as', | 1506 'AS': 'arm-linux-gnueabihf-as', |
| 1507 'CC': 'arm-linux-gnueabi-gcc', | 1507 'CC': 'arm-linux-gnueabihf-gcc', |
| 1508 'CC_host': 'gcc', | 1508 'CC_host': 'gcc', |
| 1509 'CXX': 'arm-linux-gnueabi-g++', | 1509 'CXX': 'arm-linux-gnueabihf-g++', |
| 1510 'CXX_host': 'g++', | 1510 'CXX_host': 'g++', |
| 1511 'GYP_DEFINES': 'target_arch=arm', | 1511 'GYP_DEFINES': 'target_arch=arm arm_float_abi=hard', |
| 1512 'RANLIB': 'arm-linux-gnueabi-ranlib', | 1512 'RANLIB': 'arm-linux-gnueabihf-ranlib', |
| 1513 }, | 1513 }, |
| 1514 }) | 1514 }) |
| 1515 | 1515 |
| 1516 f_linux_arm_tests_panda = linux(nohooks_on_update=True).ChromiumFactory( | 1516 f_linux_arm_tests_panda = linux(nohooks_on_update=True).ChromiumFactory( |
| 1517 slave_type='Tester', | 1517 slave_type='Tester', |
| 1518 target='Release', | 1518 target='Release', |
| 1519 build_url=chromium_linux_arm_archive, | 1519 build_url=chromium_linux_arm_archive, |
| 1520 tests=[ | 1520 tests=[ |
| 1521 'base_unittests', | 1521 'base_unittests', |
| 1522 'browser_tests', | 1522 'browser_tests', |
| (...skipping 956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2479 subject='goma canary buildbot %(result)s in %(projectName)s ' | 2479 subject='goma canary buildbot %(result)s in %(projectName)s ' |
| 2480 'on %(builder)s', | 2480 'on %(builder)s', |
| 2481 extraRecipients=['goma+alert@google.com'], | 2481 extraRecipients=['goma+alert@google.com'], |
| 2482 sendToInterestedUsers=False)) | 2482 sendToInterestedUsers=False)) |
| 2483 | 2483 |
| 2484 | 2484 |
| 2485 ####### PROJECT IDENTITY | 2485 ####### PROJECT IDENTITY |
| 2486 | 2486 |
| 2487 # Buildbot master url: | 2487 # Buildbot master url: |
| 2488 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' | 2488 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' |
| OLD | NEW |