Skip to content

Commit afd296a

Browse files
committed
Test
1 parent b2bc85e commit afd296a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

build_scripts/windows/scripts/build.cmd

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,14 +129,24 @@ 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+
140150
REM Check azure.cli can be executed. This also prints the Python version.
141151
%BUILDING_DIR%\python.exe -m azure.cli --version
142152

0 commit comments

Comments
 (0)