Skip to content

Commit f350858

Browse files
committed
Test
1 parent b2bc85e commit f350858

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

build_scripts/windows/scripts/build.cmd

+11
Original file line numberDiff line numberDiff line change
@@ -129,14 +129,25 @@ set PYTHON_EXE=%PYTHON_DIR%\python.exe
129129
robocopy %PYTHON_DIR% %BUILDING_DIR% /s /NFL /NDL
130130

131131
set CLI_SRC=%REPO_ROOT%\src
132+
echo CLI_SRC %CLI_SRC%
132133
for %%a in (%CLI_SRC%\azure-cli %CLI_SRC%\azure-cli-core %CLI_SRC%\azure-cli-telemetry) do (
133134
pushd %%a
135+
echo %%a
136+
echo %BUILDING_DIR%\python.exe -m pip install --no-warn-script-location --no-cache-dir --no-deps .
134137
%BUILDING_DIR%\python.exe -m pip install --no-warn-script-location --no-cache-dir --no-deps .
135138
popd
136139
)
140+
echo %BUILDING_DIR%\python.exe -m pip install setuptools
137141
%BUILDING_DIR%\python.exe -m pip install setuptools
142+
143+
echo %BUILDING_DIR%\python.exe -m pip install --no-warn-script-location --requirement %CLI_SRC%\azure-cli\requirements.py3.windows.txt
138144
%BUILDING_DIR%\python.exe -m pip install --no-warn-script-location --requirement %CLI_SRC%\azure-cli\requirements.py3.windows.txt
139145

146+
echo wat
147+
%BUILDING_DIR%\python.exe -m pip list
148+
%BUILDING_DIR%\python.exe -c "import pip"
149+
%BUILDING_DIR%\python.exe -m pip debug
150+
140151
REM Check azure.cli can be executed. This also prints the Python version.
141152
%BUILDING_DIR%\python.exe -m azure.cli --version
142153

0 commit comments

Comments
 (0)