Skip to content

Commit

Permalink
Show log
Browse files Browse the repository at this point in the history
  • Loading branch information
bebound committed Oct 15, 2024
1 parent b25b2ef commit bfc490a
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
29 changes: 29 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,15 @@ jobs:
echo %errorlevel%
echo install src
set CLI_SRC=%REPO_ROOT%\src
for %%a in (%CLI_SRC%\azure-cli %CLI_SRC%\azure-cli-core %CLI_SRC%\azure-cli-telemetry) do (
pushd %%a
%PYTHON_DIR%\python.exe -Im pip install --no-warn-script-location --no-cache-dir --no-deps . -vvv
popd
)
echo dir 3.12.7
dir C:\hostedtoolcache\windows\Python\3.12.7\x64\Lib
dir C:\hostedtoolcache\windows\Python\3.12.7\x64\Lib\site-packages
Expand Down Expand Up @@ -364,6 +373,9 @@ jobs:
%PYTHON_DIR%\python.exe -Im site
echo %errorlevel%
echo install setuptools wheel
%PYTHON_DIR%\python.exe -Im pip install setuptools wheel
echo python.exe -Im pip debug
%PYTHON_DIR%\python.exe -Im pip debug
echo %errorlevel%
Expand All @@ -377,6 +389,14 @@ jobs:
%PYTHON_DIR%\python.exe -m pip debug
echo %errorlevel%
echo install src
set CLI_SRC=%REPO_ROOT%\src
for %%a in (%CLI_SRC%\azure-cli %CLI_SRC%\azure-cli-core %CLI_SRC%\azure-cli-telemetry) do (
pushd %%a
%PYTHON_DIR%\python.exe -Im pip install --no-warn-script-location --no-cache-dir --no-deps . -vvv
popd
)
echo dir 3.12.7
dir C:\hostedtoolcache\windows\Python\3.12.7\x64\Lib
Expand Down Expand Up @@ -459,6 +479,15 @@ jobs:
%PYTHON_DIR%\python.exe -m pip debug
echo %errorlevel%
echo install src
set CLI_SRC=%REPO_ROOT%\src
for %%a in (%CLI_SRC%\azure-cli %CLI_SRC%\azure-cli-core %CLI_SRC%\azure-cli-telemetry) do (
pushd %%a
%PYTHON_DIR%\python.exe -Im pip install --no-warn-script-location --no-cache-dir --no-deps . -vvv
popd
)
echo dir 3.12.7
dir C:\hostedtoolcache\windows\Python\3.12.7\x64\Lib
dir C:\hostedtoolcache\windows\Python\3.12.7\x64\Lib\site-packages
Expand Down
3 changes: 2 additions & 1 deletion build_scripts/windows/scripts/build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ robocopy %PYTHON_DIR% %BUILDING_DIR% /s /NFL /NDL
set CLI_SRC=%REPO_ROOT%\src
for %%a in (%CLI_SRC%\azure-cli %CLI_SRC%\azure-cli-core %CLI_SRC%\azure-cli-telemetry) do (
pushd %%a
%BUILDING_DIR%\python.exe -Im pip install --no-warn-script-location --no-cache-dir --no-deps .
%BUILDING_DIR%\python.exe -Im pip install --no-warn-script-location --no-cache-dir --no-deps . -vvv
if %errorlevel% neq 0 goto ERROR
popd
)

Expand Down

0 comments on commit bfc490a

Please sign in to comment.