File tree 2 files changed +28
-1
lines changed
build_scripts/windows/scripts
2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -299,6 +299,15 @@ jobs:
299
299
echo %errorlevel%
300
300
301
301
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
+
302
311
echo dir 3.12.7
303
312
dir C:\hostedtoolcache\windows\Python\3.12.7\x64\Lib
304
313
dir C:\hostedtoolcache\windows\Python\3.12.7\x64\Lib\site-packages
@@ -377,6 +386,14 @@ jobs:
377
386
%PYTHON_DIR%\python.exe -m pip debug
378
387
echo %errorlevel%
379
388
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
+
380
397
381
398
echo dir 3.12.7
382
399
dir C:\hostedtoolcache\windows\Python\3.12.7\x64\Lib
@@ -459,6 +476,15 @@ jobs:
459
476
%PYTHON_DIR%\python.exe -m pip debug
460
477
echo %errorlevel%
461
478
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
+
462
488
echo dir 3.12.7
463
489
dir C:\hostedtoolcache\windows\Python\3.12.7\x64\Lib
464
490
dir C:\hostedtoolcache\windows\Python\3.12.7\x64\Lib\site-packages
Original file line number Diff line number Diff line change @@ -139,7 +139,8 @@ robocopy %PYTHON_DIR% %BUILDING_DIR% /s /NFL /NDL
139
139
set CLI_SRC = %REPO_ROOT% \src
140
140
for %%a in (%CLI_SRC% \azure-cli %CLI_SRC% \azure-cli-core %CLI_SRC% \azure-cli-telemetry) do (
141
141
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
143
144
popd
144
145
)
145
146
You can’t perform that action at this time.
0 commit comments