(view as text)
@@@STEP_CURSOR bot_update@@@

@@@STEP_STARTED@@@

python -u 'E:\b\build\scripts\slave\bot_update.py' --master chromium.webkit --builder 'WebKit Win10' --slave vm51-m1 --spec $'cache_dir = None\nsolutions = [{\'custom_vars\': {\'googlecode_url\': \'svn://svn-mirror.golo.chromium.org/%s\', \'nacl_trunk\': \'svn://svn-mirror.golo.chromium.org/native_client/trunk\', \'sourceforge_url\': \'svn://svn-mirror.golo.chromium.org/%(repo)s\', \'webkit_trunk\': \'svn://svn-mirror.golo.chromium.org/blink/trunk\'}, \'deps_file\': \'DEPS\', \'managed\': True, \'name\': \'src\', \'url\': \'svn://svn-mirror.golo.chromium.org/chrome/trunk/src\'}]' --root src --revision_mapping_file 'c:\users\chrome~2\appdata\local\temp\tmpa1qjcu.json' --issue '' --patchset '' --patch_url '' --rietveld_server '' --output_json 'c:\users\chrome~2\appdata\local\temp\tmpecdfyv.json' --revision src@e1b8cb3ccfbe5f37699be8363b961fc7fbbdbed3 --revision src/third_party/WebKit@HEAD --output_manifest
in dir E:\b\build\slave\WebKit_Win10\build:
 allow_subannotations: False
 cmd: ['python', '-u', 'E:\\b\\build\\scripts\\slave\\bot_update.py', '--master', 'chromium.webkit', '--builder', 'WebKit Win10', '--slave', 'vm51-m1', '--spec', "cache_dir = None\nsolutions = [{'custom_vars': {'googlecode_url': 'svn://svn-mirror.golo.chromium.org/%s', 'nacl_trunk': 'svn://svn-mirror.golo.chromium.org/native_client/trunk', 'sourceforge_url': 'svn://svn-mirror.golo.chromium.org/%(repo)s', 'webkit_trunk': 'svn://svn-mirror.golo.chromium.org/blink/trunk'}, 'deps_file': 'DEPS', 'managed': True, 'name': 'src', 'url': 'svn://svn-mirror.golo.chromium.org/chrome/trunk/src'}]", '--root', 'src', '--revision_mapping_file', 'c:\\users\\chrome~2\\appdata\\local\\temp\\tmpa1qjcu.json', '--issue', '', '--patchset', '', '--patch_url', '', '--rietveld_server', '', '--output_json', 'c:\\users\\chrome~2\\appdata\\local\\temp\\tmpecdfyv.json', '--revision', 'src@e1b8cb3ccfbe5f37699be8363b961fc7fbbdbed3', '--revision', 'src/third_party/WebKit@HEAD', '--output_manifest']
 cwd: E:\b\build\slave\WebKit_Win10\build
 name: bot_update
full environment:
 APPDATA: C:\Users\chrome-bot\AppData\Roaming
 AWS_CREDENTIAL_FILE: E:\b\build\site_config\.boto
 BOTO_CONFIG: E:\b\build\site_config\.boto
 BUILDBOT_BLAMELIST: [u'glevin@chromium.org', u'schenney@chromium.org']
 BUILDBOT_BRANCH: master
 BUILDBOT_BUILDBOTURL: http://build.chromium.org/p/chromium.webkit/
 BUILDBOT_BUILDERNAME: WebKit Win10
 BUILDBOT_BUILDNUMBER: 2505
 BUILDBOT_CLOBBER: 
 BUILDBOT_GOT_REVISION: None
 BUILDBOT_MASTERNAME: chromium.webkit
 BUILDBOT_REVISION: e1b8cb3ccfbe5f37699be8363b961fc7fbbdbed3
 BUILDBOT_SCHEDULER: s4_webkit_rel_trigger
 BUILDBOT_SLAVENAME: vm51-m1
 CHROME_HEADLESS: 1
 COMMONPROGRAMFILES: C:\Program Files (x86)\Common Files
 COMMONPROGRAMFILES(X86): C:\Program Files (x86)\Common Files
 COMMONPROGRAMW6432: C:\Program Files\Common Files
 COMPUTERNAME: VM51-M1
 COMSPEC: C:\Windows\system32\cmd.exe
 GIT_USER_AGENT: win32 git/1.9.5.chromium.6 vm51-m1.golo.chromium.org
 HOME: c:\Users\chrome-bot
 HOMEDRIVE: C:
 HOMEPATH: \Users\chrome-bot
 LOCALAPPDATA: C:\Users\chrome-bot\AppData\Local
 NUMBER_OF_PROCESSORS: 8
 OS: Windows_NT
 PATH: E:\b\depot_tools\python276_bin;E:\b\depot_tools\python276_bin\Scripts;E:\b\depot_tools;E:\b\depot_tools\python276_bin;C:\Windows\system32;C:\Windows\system32\WBEM;C:\Program Files\7-Zip;C:\cmake\bin;E:\b\build_internal\tools
 PATHEXT: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
 PROCESSOR_ARCHITECTURE: x86
 PROCESSOR_ARCHITEW6432: AMD64
 PROCESSOR_IDENTIFIER: Intel64 Family 6 Model 45 Stepping 7, GenuineIntel
 PROGRAMFILES: C:\Program Files (x86)
 PROGRAMW6432: C:\Program Files
 PWD: E:\b\build\slave\WebKit_Win10\build
 PYTHONPATH: E:\b\build\site_config;E:\b\build\scripts;E:\b\build\scripts\release;E:\b\build\third_party;E:\b\build\third_party\requests_1_2_3;E:\b\build_internal\site_config;E:\b\build_internal\symsrc;E:\b\build\slave;E:\b\build\third_party\buildbot_slave_8_4;E:\b\build\third_party\twisted_10_2;
 SYSTEMDRIVE: C:
 SYSTEMROOT: C:\Windows
 TEMP: C:\Users\CHROME~2\AppData\Local\Temp
 TMP: C:\Users\CHROME~2\AppData\Local\Temp
 USERDOMAIN: GOLO
 USERNAME: chrome-bot
 USERPROFILE: C:\Users\chrome-bot
 VS110COMNTOOLS: C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\
 WINDIR: C:\Windows


What is the "Bot Update" step?
==============================

This step ensures that the source checkout on the bot (e.g. Chromium's src/ and
its dependencies) is checked out in a consistent state. This means that all of
the necessary repositories are checked out, no extra repositories are checked
out, and no locally modified files are present.

These actions used to be taken care of by the "gclient revert" and "update"
steps. However, those steps are known to be buggy and occasionally flaky. This
step has two main advantages over them:
  * it only operates in Git, so the logic can be clearer and cleaner; and
  * it is a slave-side script, so its behavior can be modified without
    restarting the master.

Why Git, you ask? Because that is the direction that the Chromium project is
heading. This step is an integral part of the transition from using the SVN repo
at chrome/trunk/src to using the Git repo src.git. Please pardon the dust while
we fully convert everything to Git. This message will get out of your way
eventually, and the waterfall will be a happier place because of it.

This step can be activated or deactivated independently on every builder on
every master. When it is active, the "gclient revert" and "update" steps become
no-ops. When it is inactive, it prints this message, cleans up after itself, and
lets everything else continue as though nothing has changed. Eventually, when
everything is stable enough, this step will replace them entirely.

Debugging information:
(master/builder/slave may be unspecified on recipes)
master: chromium.webkit
builder: WebKit Win10
slave: vm51-m1
forced by recipes: Off by recipes, but forced on by bot update
bot_update.py is: ACTIVE.
The bot will perform a Git checkout in this step.
The "gclient revert" and "update" steps are no-ops.


Gclient Solutions
=================
src (https://chromium.googlesource.com/chromium/src.git)
  Dependencies file is .DEPS.git
  Managed mode is OFF
  Custom Variables:
    googlecode_url = svn://svn-mirror.golo.chromium.org/%s
    nacl_trunk = svn://svn-mirror.golo.chromium.org/native_client/trunk
    sourceforge_url = svn://svn-mirror.golo.chromium.org/%(repo)s
    webkit_trunk = svn://svn-mirror.golo.chromium.org/blink/trunk

Emitting flag file at E:\b\build\slave\WebKit_Win10\build\update.flag
Revisions: ['src@e1b8cb3ccfbe5f37699be8363b961fc7fbbdbed3', 'src/third_party/WebKit@HEAD']
Fetching Git checkout at src@e1b8cb3ccfbe5f37699be8363b961fc7fbbdbed3
Fetching Git checkout
===Running E:\b\depot_tools\python276_bin\python.exe -u E:\b\depot_tools\git_cache.py unlock -vv --force --all --cache-dir E:\\b\\build\\slave\\cache_dir (attempt #1)===
In directory: E:\b\build\slave\WebKit_Win10\build
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-pywebsocket-src.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-flac.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-native_client-src-native_client.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-webrtc-trunk-talk.lock
Could Not Find e:\b\build\slave\cache_dir\android.googlesource.com-platform-external-deqp.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-cygwin.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-googletest.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-perl.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-psyco_win32.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-webrtc-trunk-webrtc.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-pyftpdlib.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-third_party-ffmpeg.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-bidichecker-lib.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-libsrtp.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-libyuv-libyuv.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-khronosgroup-webgl.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-github.com-google-pywebsocket.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-acid3.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-libjpeg_turbo.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-blink.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-yasm-patched--yasm.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-libexif-sources.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-pefile.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-llvm--project-libcxx.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-snappy.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-src.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-github.com-chromium-web--page--replay.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-libphonenumber-cpp-test.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-github.com-google-open--vcdiff.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-swarming.client.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-smhasher.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-libphonenumber-cpp-src-phonenumbers.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-tools-deps2git.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-reference_builds-chrome_win.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-colorama.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-webrtc-deps-third_party-openmax.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-webm-libvpx.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-github.com-google-googletest.lock
Could Not Find e:\b\build\slave\cache_dir\boringssl.googlesource.com-boringssl.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-gperf.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-googlemock.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-cdm.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-selenium-py.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-mesa.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-github.com-catapult--project-catapult.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-bison.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-github.com-open--source--parsers-jsoncpp.lock
Could Not Find e:\b\build\slave\cache_dir\pdfium.googlesource.com-pdfium.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-nacl_sdk_binaries.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-github.com-cld2owners-cld2.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-grit--i18n.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-github.com-googlei18n-sfntly.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-nss.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-leveldb.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-hunspell_dictionaries.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-skia.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-github.com-chromium-dom--distiller--dist.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-llvm--project-libcxxabi.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-buildtools.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-breakpad-breakpad-src.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-angle-angle.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-gyp.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-google--breakpad-src.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-sfntly-cpp-src.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-google--safe--browsing-testing.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-libphonenumber-resources.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-native_client-deps-third_party-gnu_binutils.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-webm-libwebm.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-opus.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-canvas_bench.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-native_client-deps-third_party-mingw--w64-mingw-bin.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-crashpad-crashpad.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-libvpx.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-icu.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-py_trace_event.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-yasm-binaries.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-deps-lighttpd.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-native_client-src-third_party-scons--2.0.1.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-llvm--project-cfe-tools-clang--format.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-chromium-frame_rate-content.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-usrsctplib.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-v8-v8.lock
Could Not Find e:\b\build\slave\cache_dir\chromium.googlesource.com-external-libaddressinput.lock
INFO:root:Broke locks on these caches:
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-pywebsocket-src
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-flac
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-native_client-src-native_client
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-webrtc-trunk-talk
  E:\\b\\build\\slave\\cache_dir\android.googlesource.com-platform-external-deqp
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-cygwin
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-googletest
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-perl
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-psyco_win32
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-webrtc-trunk-webrtc
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-pyftpdlib
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-third_party-ffmpeg
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-bidichecker-lib
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-libsrtp
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-libyuv-libyuv
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-khronosgroup-webgl
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-github.com-google-pywebsocket
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-acid3
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-libjpeg_turbo
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-blink
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-yasm-patched--yasm
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-libexif-sources
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-pefile
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-llvm--project-libcxx
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-snappy
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-github.com-chromium-web--page--replay
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-libphonenumber-cpp-test
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-github.com-google-open--vcdiff
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-swarming.client
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-smhasher
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-libphonenumber-cpp-src-phonenumbers
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-tools-deps2git
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-reference_builds-chrome_win
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-colorama
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-webrtc-deps-third_party-openmax
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-webm-libvpx
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-github.com-google-googletest
  E:\\b\\build\\slave\\cache_dir\boringssl.googlesource.com-boringssl
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-gperf
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-googlemock
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-cdm
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-selenium-py
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-mesa
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-github.com-catapult--project-catapult
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-bison
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-github.com-open--source--parsers-jsoncpp
  E:\\b\\build\\slave\\cache_dir\pdfium.googlesource.com-pdfium
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-nacl_sdk_binaries
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-github.com-cld2owners-cld2
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-grit--i18n
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-github.com-googlei18n-sfntly
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-nss
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-leveldb
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-hunspell_dictionaries
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-skia
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-github.com-chromium-dom--distiller--dist
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-llvm--project-libcxxabi
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-buildtools
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-breakpad-breakpad-src
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-angle-angle
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-gyp
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-google--breakpad-src
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-sfntly-cpp-src
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-google--safe--browsing-testing
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-libphonenumber-resources
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-native_client-deps-third_party-gnu_binutils
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-webm-libwebm
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-opus
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-canvas_bench
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-native_client-deps-third_party-mingw--w64-mingw-bin
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-crashpad-crashpad
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-libvpx
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-icu
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-py_trace_event
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-yasm-binaries
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-deps-lighttpd
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-native_client-src-third_party-scons--2.0.1
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-llvm--project-cfe-tools-clang--format
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-frame_rate-content
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-usrsctplib
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-v8-v8
  E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-external-libaddressinput
===Succeeded in 0.0 mins===

===Running E:\b\depot_tools\python276_bin\python.exe -u E:\b\depot_tools\git_cache.py populate --ignore_locks -v --cache-dir E:\\b\\build\\slave\\cache_dir https://chromium.googlesource.com/chromium/src.git (attempt #1)===
In directory: E:\b\build\slave\WebKit_Win10\build
running "git config gc.autodetach 0" in "E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src"
running "git config gc.autopacklimit 0" in "E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src"
running "git config core.deltaBaseCacheLimit 512m" in "E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src"
running "git config remote.origin.url https://chromium.googlesource.com/chromium/src.git" in "E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src"
running "git config --replace-all remote.origin.fetch +refs/heads/*:refs/heads/* \+refs/heads/\*:.*" in "E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src"
Fetching +refs/heads/*:refs/heads/*
running "git fetch -v --progress origin +refs/heads/*:refs/heads/*" in "E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src"
POST git-upload-pack (990 bytes)
remote: Counting objects: 1   
remote: Counting objects: 219773, done
remote: Finding sources:   5% (1/17)   
remote: Finding sources:  11% (2/17)   
remote: Finding sources:  17% (3/17)   
remote: Finding sources:  23% (4/17)   
remote: Finding sources:  29% (5/17)   
remote: Finding sources:  35% (6/17)   
remote: Finding sources:  41% (7/17)   
remote: Finding sources:  47% (8/17)   
remote: Finding sources:  52% (9/17)   
remote: Finding sources:  58% (10/17)   
remote: Finding sources:  64% (11/17)   
remote: Finding sources:  70% (12/17)   
remote: Finding sources:  76% (13/17)   
remote: Finding sources:  82% (14/17)   
remote: Finding sources:  88% (15/17)   
remote: Finding sources:  94% (16/17)   
remote: Finding sources: 100% (17/17)   
remote: Finding sources: 100% (17/17)
remote: Total 17 (delta 12), reused 17 (delta 12)
From https://chromium.googlesource.com/a/chromium/src
 = [up to date]      ignore/bar -> ignore/bar
 = [up to date]      ignore/foo -> ignore/foo
 = [up to date]      infra/config -> infra/config
 = [up to date]      lkcr       -> lkcr
 = [up to date]      lkgr       -> lkgr
   a7154d1..7a3a64f  master     -> master
===Succeeded in 0.7 mins===

===Running E:\b\depot_tools\python276_bin\python.exe -u E:\b\depot_tools\git_cache.py exists --quiet --cache-dir E:\\b\\build\\slave\\cache_dir https://chromium.googlesource.com/chromium/src.git (attempt #1)===
In directory: E:\b\build\slave\WebKit_Win10\build
E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src
===Succeeded in 0.0 mins===

===Running git.bat remote set-url origin E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src (attempt #1)===
In directory: E:\b\build\slave\WebKit_Win10\build\src
===Succeeded in 0.0 mins===

===Running git.bat fetch origin (attempt #1)===
In directory: E:\b\build\slave\WebKit_Win10\build\src
      0 [main] us 0 init_cheap: VirtualAlloc pointer is null, Win32 error 487
AllocationBase 0x920000, BaseAddress 0xA10000, RegionSize 0x10D000, State 0x2000
E:\b\depot_tools\git-1.9.5.chromium.6_bin\bin\sh.exe: *** Couldn't reserve space for cygwin's heap, Win32 error 0
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
===Failed in 0.0 mins===

===backing off, sleeping for 4 secs===
===Running git.bat fetch origin (attempt #2)===
In directory: E:\b\build\slave\WebKit_Win10\build\src
      0 [main] us 0 init_cheap: VirtualAlloc pointer is null, Win32 error 487
AllocationBase 0x8E0000, BaseAddress 0xA10000, RegionSize 0xCD000, State 0x2000
E:\b\depot_tools\git-1.9.5.chromium.6_bin\bin\sh.exe: *** Couldn't reserve space for cygwin's heap, Win32 error 0
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
===Failed in 0.0 mins===

===backing off, sleeping for 19 secs===
===Running git.bat fetch origin (attempt #3)===
In directory: E:\b\build\slave\WebKit_Win10\build\src
      0 [main] us 0 init_cheap: VirtualAlloc pointer is null, Win32 error 487
AllocationBase 0x970000, BaseAddress 0xAD0000, RegionSize 0x9D000, State 0x2000
E:\b\depot_tools\git-1.9.5.chromium.6_bin\bin\sh.exe: *** Couldn't reserve space for cygwin's heap, Win32 error 0
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
===Failed in 0.0 mins===

===backing off, sleeping for 71 secs===
===Running git.bat fetch origin (attempt #4)===
In directory: E:\b\build\slave\WebKit_Win10\build\src
      0 [main] us 0 init_cheap: VirtualAlloc pointer is null, Win32 error 487
AllocationBase 0x8A0000, BaseAddress 0xA10000, RegionSize 0x8D000, State 0x2000
E:\b\depot_tools\git-1.9.5.chromium.6_bin\bin\sh.exe: *** Couldn't reserve space for cygwin's heap, Win32 error 0
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
===Failed in 0.0 mins===

===backing off, sleeping for 277 secs===
===Running git.bat fetch origin (attempt #5)===
In directory: E:\b\build\slave\WebKit_Win10\build\src
      0 [main] us 0 init_cheap: VirtualAlloc pointer is null, Win32 error 487
AllocationBase 0x0, BaseAddress 0xDC0000, RegionSize 0x50000, State 0x10000
E:\b\depot_tools\git-1.9.5.chromium.6_bin\bin\sh.exe: *** Couldn't reserve space for cygwin's heap, Win32 error 0
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
===Failed in 0.0 mins===

Something failed: git.bat fetch origin failed with code 128 in E:\b\build\slave\WebKit_Win10\build\src after 5 attempts..
waiting 5 seconds and trying again...
===Running E:\b\depot_tools\python276_bin\python.exe -u E:\b\depot_tools\git_cache.py populate --ignore_locks -v --cache-dir E:\\b\\build\\slave\\cache_dir https://chromium.googlesource.com/chromium/src.git (attempt #1)===
In directory: E:\b\build\slave\WebKit_Win10\build
running "git config gc.autodetach 0" in "E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src"
running "git config gc.autopacklimit 0" in "E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src"
running "git config core.deltaBaseCacheLimit 512m" in "E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src"
running "git config remote.origin.url https://chromium.googlesource.com/chromium/src.git" in "E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src"
running "git config --replace-all remote.origin.fetch +refs/heads/*:refs/heads/* \+refs/heads/\*:.*" in "E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src"
Fetching +refs/heads/*:refs/heads/*
running "git fetch -v --progress origin +refs/heads/*:refs/heads/*" in "E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src"
POST git-upload-pack (990 bytes)
remote: Counting objects: 1   
remote: Counting objects: 219784, done
remote: Finding sources:   9% (1/11)   
remote: Finding sources:  18% (2/11)   
remote: Finding sources:  27% (3/11)   
remote: Finding sources:  36% (4/11)   
remote: Finding sources:  45% (5/11)   
remote: Finding sources:  54% (6/11)   
remote: Finding sources:  63% (7/11)   
remote: Finding sources:  72% (8/11)   
remote: Finding sources:  81% (9/11)   
remote: Finding sources:  90% (10/11)   
remote: Finding sources: 100% (11/11)   
remote: Finding sources: 100% (11/11)
remote: Total 11 (delta 10), reused 11 (delta 10)
From https://chromium.googlesource.com/a/chromium/src
 = [up to date]      ignore/bar -> ignore/bar
 = [up to date]      ignore/foo -> ignore/foo
 = [up to date]      infra/config -> infra/config
 = [up to date]      lkcr       -> lkcr
 = [up to date]      lkgr       -> lkgr
   7a3a64f..e7c8c3c  master     -> master
===Succeeded in 0.1 mins===

===Running E:\b\depot_tools\python276_bin\python.exe -u E:\b\depot_tools\git_cache.py exists --quiet --cache-dir E:\\b\\build\\slave\\cache_dir https://chromium.googlesource.com/chromium/src.git (attempt #1)===
In directory: E:\b\build\slave\WebKit_Win10\build
E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src
===Succeeded in 0.0 mins===

===Running git.bat clone --no-checkout --local --shared E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src E:\b\build\slave\WebKit_Win10\build\src (attempt #1)===
In directory: E:\b\build\slave\WebKit_Win10\build
Cloning into 'E:\b\build\slave\WebKit_Win10\build\src'...
      0 [main] us 0 init_cheap: VirtualAlloc pointer is null, Win32 error 487
AllocationBase 0x960000, BaseAddress 0xA10000, RegionSize 0x14D000, State 0x2000
E:\b\depot_tools\git-1.9.5.chromium.6_bin\bin\sh.exe: *** Couldn't reserve space for cygwin's heap, Win32 error 0
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
===Failed in 0.0 mins===

===backing off, sleeping for 4 secs===
===Running git.bat clone --no-checkout --local --shared E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src E:\b\build\slave\WebKit_Win10\build\src (attempt #2)===
In directory: E:\b\build\slave\WebKit_Win10\build
Cloning into 'E:\b\build\slave\WebKit_Win10\build\src'...
      0 [main] us 0 init_cheap: VirtualAlloc pointer is null, Win32 error 487
AllocationBase 0x910000, BaseAddress 0xA10000, RegionSize 0xFD000, State 0x2000
E:\b\depot_tools\git-1.9.5.chromium.6_bin\bin\sh.exe: *** Couldn't reserve space for cygwin's heap, Win32 error 0
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
===Failed in 0.0 mins===

===backing off, sleeping for 18 secs===
===Running git.bat clone --no-checkout --local --shared E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src E:\b\build\slave\WebKit_Win10\build\src (attempt #3)===
In directory: E:\b\build\slave\WebKit_Win10\build
Cloning into 'E:\b\build\slave\WebKit_Win10\build\src'...
      0 [main] us 0 init_cheap: VirtualAlloc pointer is null, Win32 error 487
AllocationBase 0x0, BaseAddress 0xDE0000, RegionSize 0x60000, State 0x10000
E:\b\depot_tools\git-1.9.5.chromium.6_bin\bin\sh.exe: *** Couldn't reserve space for cygwin's heap, Win32 error 0
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
===Failed in 0.0 mins===

===backing off, sleeping for 64 secs===
===Running git.bat clone --no-checkout --local --shared E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src E:\b\build\slave\WebKit_Win10\build\src (attempt #4)===
In directory: E:\b\build\slave\WebKit_Win10\build
Cloning into 'E:\b\build\slave\WebKit_Win10\build\src'...
      0 [main] us 0 init_cheap: VirtualAlloc pointer is null, Win32 error 487
AllocationBase 0x0, BaseAddress 0xE90000, RegionSize 0xE0000, State 0x10000
E:\b\depot_tools\git-1.9.5.chromium.6_bin\bin\sh.exe: *** Couldn't reserve space for cygwin's heap, Win32 error 0
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
===Failed in 0.0 mins===

===backing off, sleeping for 300 secs===
===Running git.bat clone --no-checkout --local --shared E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src E:\b\build\slave\WebKit_Win10\build\src (attempt #5)===
In directory: E:\b\build\slave\WebKit_Win10\build
Cloning into 'E:\b\build\slave\WebKit_Win10\build\src'...
      0 [main] us 0 init_cheap: VirtualAlloc pointer is null, Win32 error 487
AllocationBase 0x910000, BaseAddress 0xA10000, RegionSize 0xFD000, State 0x2000
E:\b\depot_tools\git-1.9.5.chromium.6_bin\bin\sh.exe: *** Couldn't reserve space for cygwin's heap, Win32 error 0
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
===Failed in 0.0 mins===

Something failed: git.bat clone --no-checkout --local --shared E:\\b\\build\\slave\\cache_dir\chromium.googlesource.com-chromium-src E:\b\build\slave\WebKit_Win10\build\src failed with code 128 in E:\b\build\slave\WebKit_Win10\build after 5 attempts..
waiting 5 seconds and trying again...
Emitting flag file at E:\b\build\slave\WebKit_Win10\build\update.flag

@@@STEP_CURSOR bot_update@@@

@@@STEP_LOG_LINE@json.output@{@@@

@@@STEP_LOG_LINE@json.output@  "did_run": true@@@

@@@STEP_LOG_LINE@json.output@}@@@

@@@STEP_LOG_END@json.output@@@

@@@STEP_EXCEPTION@@@

@@@STEP_CURSOR bot_update@@@



--------------------------------------------------------------------------------
started: Wed Nov  4 07:09:01 2015
ended: Wed Nov  4 07:22:36 2015
duration: 13 mins, 35 secs
status: EXCEPTION
status reason: