File tree 1 file changed +11
-0
lines changed
build_scripts/windows/scripts
1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -129,14 +129,25 @@ set PYTHON_EXE=%PYTHON_DIR%\python.exe
129
129
robocopy %PYTHON_DIR% %BUILDING_DIR% /s /NFL /NDL
130
130
131
131
set CLI_SRC = %REPO_ROOT% \src
132
+ echo CLI_SRC %CLI_SRC%
132
133
for %%a in (%CLI_SRC% \azure-cli %CLI_SRC% \azure-cli-core %CLI_SRC% \azure-cli-telemetry) do (
133
134
pushd %%a
135
+ echo %%a
136
+ echo %BUILDING_DIR% \python.exe -m pip install --no-warn-script-location --no-cache-dir --no-deps .
134
137
%BUILDING_DIR% \python.exe -m pip install --no-warn-script-location --no-cache-dir --no-deps .
135
138
popd
136
139
)
140
+ echo %BUILDING_DIR% \python.exe -m pip install setuptools
137
141
%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
138
144
%BUILDING_DIR% \python.exe -m pip install --no-warn-script-location --requirement %CLI_SRC% \azure-cli\requirements.py3.windows.txt
139
145
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
+
140
151
REM Check azure.cli can be executed. This also prints the Python version.
141
152
%BUILDING_DIR% \python.exe -m azure.cli --version
142
153
You can’t perform that action at this time.
0 commit comments