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 d53b7dd
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
26 changes: 26 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 @@ -377,6 +386,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 +476,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 d53b7dd

Please sign in to comment.