autoninja.bat 1 KB
Newer Older
1 2 3 4 5
@echo off
:: Copyright 2017 The Chromium Authors. All rights reserved.
:: Use of this source code is governed by a BSD-style license that can be
:: found in the LICENSE file.

6 7 8
REM Set unique build ID.
FOR /f "usebackq tokens=*" %%a in (`python -c "import uuid; print uuid.uuid4()"`) do set AUTONINJA_BUILD_ID=%%a

9 10
REM Execute whatever is printed by autoninja.py.
REM Also print it to reassure that the right settings are being used.
11
FOR /f "usebackq tokens=*" %%a in (`python %~dp0autoninja.py "%*"`) do echo %%a & %%a
12
@if errorlevel 1 goto buildfailure
13 14 15

REM Use call to invoke python script here, because we use python via python.bat.
@if "%NINJA_SUMMARIZE_BUILD%" == "1" call python.bat %~dp0post_build_ninja_summary.py %*
16
@call python.bat %~dp0ninjalog_uploader_wrapper.py --cmdline %*
17

18
exit /b
19
:buildfailure
20 21 22

@call python.bat %~dp0ninjalog_uploader_wrapper.py --cmdline %*

23 24 25
REM Return an error code of 1 so that if a developer types:
REM "autoninja chrome && chrome" then chrome won't run if the build fails.
cmd /c exit 1