text
stringlengths 0
834k
|
---|
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. |
goto end |
) |
if ""%1"" == ""gettext"" ( |
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale |
if errorlevel 1 exit /b 1 |
echo. |
echo.Build finished. The message catalogs are in %BUILDDIR%/locale. |
goto end |
) |
if ""%1"" == ""changes"" ( |
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes |
if errorlevel 1 exit /b 1 |
echo. |
echo.The overview file is in %BUILDDIR%/changes. |
goto end |
) |
if ""%1"" == ""linkcheck"" ( |
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck |
if errorlevel 1 exit /b 1 |
echo. |
echo.Link check complete; look for any errors in the above output ^ |
or in %BUILDDIR%/linkcheck/output.txt. |
goto end |
) |
if ""%1"" == ""doctest"" ( |
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest |
if errorlevel 1 exit /b 1 |
echo. |
echo.Testing of doctests in the sources finished, look at the ^ |
results in %BUILDDIR%/doctest/output.txt. |
goto end |
) |
if ""%1"" == ""coverage"" ( |
%SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage |
if errorlevel 1 exit /b 1 |
echo. |
echo.Testing of coverage in the sources finished, look at the ^ |
results in %BUILDDIR%/coverage/python.txt. |
goto end |
) |
if ""%1"" == ""xml"" ( |
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml |
if errorlevel 1 exit /b 1 |
echo. |
echo.Build finished. The XML files are in %BUILDDIR%/xml. |
goto end |
) |
if ""%1"" == ""pseudoxml"" ( |
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml |
if errorlevel 1 exit /b 1 |
echo. |
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. |
goto end |
) |
:end |
",26.5189393939,79,0.706613341 |
1,d000409e9e9a44a674f3797699ba9142d398361a,3462,bat,Batchfile,install/ci-vm/ci-windows/ci/runCI.bat,zelzhan/sample-platform,ebedfc4a65e0cb17b8b024c29f32e0390e1da69d,['ISC'],28.0,2017-11-04T16:15:04.000Z,2022-02-23T15:25:05.000Z,install/ci-vm/ci-windows/ci/runCI.bat,zelzhan/sample-platform,ebedfc4a65e0cb17b8b024c29f32e0390e1da69d,['ISC'],503.0,2017-09-30T17:05:15.000Z,2022-03-31T17:07:43.000Z,install/ci-vm/ci-windows/ci/runCI.bat,zelzhan/sample-platform,ebedfc4a65e0cb17b8b024c29f32e0390e1da69d,['ISC'],89.0,2017-09-24T11:27:27.000Z,2022-03-09T18:43:57.000Z,"@echo off |
echo Checking for the existence of variables.bat |
if NOT EXIST ""variables.bat"" ( |
rem No variable file defined |
shutdown -s -t 0 |
exit |
) |
echo Loading variables.bat |
rem Source variables |
call %~dp0\variables.bat |
if ""%reportURLFile%""=="""" ( |
rem No report URL file defined |
shutdown -s -t 0 |
exit |
) |
if ""%srcDir%""=="""" ( |
rem No source dir defined |
shutdown -s -t 0 |
exit |
) |
SET /P reportURL=<%reportURLFile% |
SET userAgent=""CCX/CI_BOT"" |
SET logFile=""%reportFolder%/log.html"" |
echo Copy files over to local disk |
call :postStatus ""preparation"" ""Copy testsuite to local folder"" |
rem robocopy returns a non-zero exit code even on success (https://ss64.com/nt/robocopy-exit.html), so we cannot use executeCommand |
call robocopy %suiteSrcDir% %suiteDstDir% /e /MIR >> ""%logFile%"" |
call :postStatus ""preparation"" ""Copy code to local folder"" |
call robocopy %srcDir% %dstDir% /e /MIR /XD %srcDir%\.git >> ""%logFile%"" |
call :executeCommand cd %dstDir% |