Skip to content

Commit 667728c

Browse files
committed
Show log
1 parent b25b2ef commit 667728c

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

azure-pipelines.yml

+26
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,15 @@ jobs:
299299
echo %errorlevel%
300300
301301
302+
echo install src
303+
set CLI_SRC=%REPO_ROOT%\src
304+
for %%a in (%CLI_SRC%\azure-cli %CLI_SRC%\azure-cli-core %CLI_SRC%\azure-cli-telemetry) do (
305+
pushd %%a
306+
%BUILDING_DIR%\python.exe -Im pip install --no-warn-script-location --no-cache-dir --no-deps . -vvv
307+
popd
308+
)
309+
310+
302311
echo dir 3.12.7
303312
dir C:\hostedtoolcache\windows\Python\3.12.7\x64\Lib
304313
dir C:\hostedtoolcache\windows\Python\3.12.7\x64\Lib\site-packages
@@ -377,6 +386,14 @@ jobs:
377386
%PYTHON_DIR%\python.exe -m pip debug
378387
echo %errorlevel%
379388
389+
echo install src
390+
set CLI_SRC=%REPO_ROOT%\src
391+
for %%a in (%CLI_SRC%\azure-cli %CLI_SRC%\azure-cli-core %CLI_SRC%\azure-cli-telemetry) do (
392+
pushd %%a
393+
%BUILDING_DIR%\python.exe -Im pip install --no-warn-script-location --no-cache-dir --no-deps . -vvv
394+
popd
395+
)
396+
380397
381398
echo dir 3.12.7
382399
dir C:\hostedtoolcache\windows\Python\3.12.7\x64\Lib
@@ -459,6 +476,15 @@ jobs:
459476
%PYTHON_DIR%\python.exe -m pip debug
460477
echo %errorlevel%
461478
479+
480+
echo install src
481+
set CLI_SRC=%REPO_ROOT%\src
482+
for %%a in (%CLI_SRC%\azure-cli %CLI_SRC%\azure-cli-core %CLI_SRC%\azure-cli-telemetry) do (
483+
pushd %%a
484+
%BUILDING_DIR%\python.exe -Im pip install --no-warn-script-location --no-cache-dir --no-deps . -vvv
485+
popd
486+
)
487+
462488
echo dir 3.12.7
463489
dir C:\hostedtoolcache\windows\Python\3.12.7\x64\Lib
464490
dir C:\hostedtoolcache\windows\Python\3.12.7\x64\Lib\site-packages

build_scripts/windows/scripts/build.cmd

+2-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ robocopy %PYTHON_DIR% %BUILDING_DIR% /s /NFL /NDL
139139
set CLI_SRC=%REPO_ROOT%\src
140140
for %%a in (%CLI_SRC%\azure-cli %CLI_SRC%\azure-cli-core %CLI_SRC%\azure-cli-telemetry) do (
141141
pushd %%a
142-
%BUILDING_DIR%\python.exe -Im pip install --no-warn-script-location --no-cache-dir --no-deps .
142+
%BUILDING_DIR%\python.exe -Im pip install --no-warn-script-location --no-cache-dir --no-deps . -vvv
143+
if %errorlevel% neq 0 goto ERROR
143144
popd
144145
)
145146

0 commit comments

Comments
 (0)