• Home
  • Raw
  • Download

Lines Matching +full:download +full:- +full:url

19 rem This is the URL that will be used to download installation files.
20 rem The files available from the default URL *will* conflict with your
24 rem The following substitutions will be applied to the download URL:
35 set EXTERNALS=%D%..\..\externals\windows-installer\
42 set PGO=-m test -q --pgo
49 if "%1" EQU "-h" goto Help
50 if "%1" EQU "-c" (set CERTNAME=%~2) && shift && shift && goto CheckOpts
51 if "%1" EQU "--certificate" (set CERTNAME=%~2) && shift && shift && goto CheckOpts
52 if "%1" EQU "-o" (set OUTDIR=%~2) && shift && shift && goto CheckOpts
53 if "%1" EQU "--out" (set OUTDIR=%~2) && shift && shift && goto CheckOpts
54 if "%1" EQU "-D" (set SKIPDOC=1) && shift && goto CheckOpts
55 if "%1" EQU "--skip-doc" (set SKIPDOC=1) && shift && goto CheckOpts
56 if "%1" EQU "-B" (set SKIPBUILD=1) && shift && goto CheckOpts
57 if "%1" EQU "--skip-build" (set SKIPBUILD=1) && shift && goto CheckOpts
58 if "%1" EQU "--download" (set DOWNLOAD_URL=%~2) && shift && shift && goto CheckOpts
59 if "%1" EQU "--test" (set TESTTARGETDIR=%~2) && shift && shift && goto CheckOpts
60 if "%1" EQU "-b" (set TARGET=Build) && shift && goto CheckOpts
61 if "%1" EQU "--build" (set TARGET=Build) && shift && goto CheckOpts
62 if /I "%1" EQU "-x86" (set BUILDX86=1) && shift && goto CheckOpts
63 if /I "%1" EQU "-Win32" (set BUILDX86=1) && shift && goto CheckOpts
64 if /I "%1" EQU "-x64" (set BUILDX64=1) && shift && goto CheckOpts
65 if /I "%1" EQU "-arm64" (set BUILDARM64=1) && shift && goto CheckOpts
66 if "%1" EQU "--pgo" (set PGO=%~2) && shift && shift && goto CheckOpts
67 if "%1" EQU "--skip-pgo" (set PGO=) && shift && goto CheckOpts
68 if "%1" EQU "--skip-nuget" (set BUILDNUGET=) && shift && goto CheckOpts
69 if "%1" EQU "--skip-zip" (set BUILDZIP=) && shift && goto CheckOpts
70 if "%1" EQU "--skip-msi" (set BUILDMSI=) && shift && goto CheckOpts
107 call "%D%testrelease.bat" -t "%TESTTARGETDIR%"
140 if exist "%BUILD%en-us" (
141 echo Deleting %BUILD%en-us
142 rmdir /q/s "%BUILD%en-us"
164 set PGOOPTS=--pgo-job "%PGO%"
169 @echo call "%PCBUILD%build.bat" -e -p %BUILD_PLAT% -t %TARGET% %PGOOPTS% %CERTOPTS%
170 @call "%PCBUILD%build.bat" -e -p %BUILD_PLAT% -t %TARGET% %PGOOPTS% %CERTOPTS%
175 @echo call "%PCBUILD%build.bat" -d -e -p %BUILD_PLAT% -t %TARGET%
176 @call "%PCBUILD%build.bat" -d -e -p %BUILD_PLAT% -t %TARGET%
185 ) else if not exist "%Py_OutDir%win32\en-us\launcher.msi" (
200 %MSBUILD% "%D%make_zip.proj" /t:Build %BUILDOPTS% %CERTOPTS% /p:OutputPath="%BUILD%en-us"
209 …\nuget\make_pkg.proj" /t:Build /p:Configuration=Release /p:Platform=%1 /p:OutputPath="%BUILD%en-us"
218 robocopy "%BUILD%en-us" "%OUTDIR%\%OUTDIR_PLAT%" /XF "*.wixpdb"
226 echo buildrelease.bat [--out DIR] [-x86] [-x64] [-arm64] [--certificate CERTNAME] [--build] [--pgo …
227 echo [--skip-build] [--skip-doc] [--skip-nuget] [--skip-zip] [--skip-pgo]
228 echo [--download DOWNLOAD URL] [--test TARGETDIR]
229 echo [-h]
231 echo --out (-o) Specify an additional output directory for installers
232 echo -x86 Build x86 installers
233 echo -x64 Build x64 installers
234 echo -arm64 Build ARM64 installers
235 echo --build (-b) Incrementally build Python rather than rebuilding
236 echo --skip-build (-B) Do not build Python (just do the installers)
237 echo --skip-doc (-D) Do not build documentation
238 echo --pgo Specify PGO command for x64 installers
239 echo --skip-pgo Build x64 installers without using PGO
240 echo --skip-msi Do not build executable/MSI packages
241 echo --skip-nuget Do not build Nuget packages
242 echo --skip-zip Do not build embeddable package
243 echo --download Specify the full download URL for MSIs
244 echo --test Specify the test directory to run the installer tests
245 echo -h Display this help information
248 echo If --test is not specified, the installer tests are not run.
250 echo For the --pgo option, any Python command line can be used, or 'default' to
251 echo use the default task (-m test --pgo).
256 echo The following substitutions will be applied to the download URL: