Mercurial > hg
annotate contrib/install-windows-dependencies.ps1 @ 47813:7a0d7c34e0ab stable
contrib: comment out the 64-bit py38 dependency installation on Windows
Not sure what is going on here, but it appears to not install py3.8 x64 in the
usual `C:\hgdev` directory. The x32 installer works fine. I'm assuming this is
a bug in this version of the installer, but didn't look into it too much.
Differential Revision: https://phab.mercurial-scm.org/D11274
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Mon, 09 Aug 2021 19:36:26 -0400 |
parents | 7f220c6f3c81 |
children | 3b04e4746020 |
rev | line source |
---|---|
42023
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
1 # install-dependencies.ps1 - Install Windows dependencies for building Mercurial |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
2 # |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
3 # Copyright 2019 Gregory Szorc <gregory.szorc@gmail.com> |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
4 # |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
5 # This software may be used and distributed according to the terms of the |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
6 # GNU General Public License version 2 or any later version. |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
7 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
8 # This script can be used to bootstrap a Mercurial build environment on |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
9 # Windows. |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
10 # |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
11 # The script makes a lot of assumptions about how things should work. |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
12 # For example, the install location of Python is hardcoded to c:\hgdev\*. |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
13 # |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
14 # The script should be executed from a PowerShell with elevated privileges |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
15 # if you don't want to see a UAC prompt for various installers. |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
16 # |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
17 # The script is tested on Windows 10 and Windows Server 2019 (in EC2). |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
18 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
19 $VS_BUILD_TOOLS_URL = "https://download.visualstudio.microsoft.com/download/pr/a1603c02-8a66-4b83-b821-811e3610a7c4/aa2db8bb39e0cbd23e9940d8951e0bc3/vs_buildtools.exe" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
20 $VS_BUILD_TOOLS_SHA256 = "911E292B8E6E5F46CBC17003BDCD2D27A70E616E8D5E6E69D5D489A605CAA139" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
21 |
45642
56281b75264a
contrib: install latest versions of Python
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44760
diff
changeset
|
22 $PYTHON37_x86_URL = "https://www.python.org/ftp/python/3.7.9/python-3.7.9.exe" |
56281b75264a
contrib: install latest versions of Python
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44760
diff
changeset
|
23 $PYTHON37_x86_SHA256 = "769bb7c74ad1df6d7d74071cc16a984ff6182e4016e11b8949b93db487977220" |
56281b75264a
contrib: install latest versions of Python
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44760
diff
changeset
|
24 $PYTHON37_X64_URL = "https://www.python.org/ftp/python/3.7.9/python-3.7.9-amd64.exe" |
56281b75264a
contrib: install latest versions of Python
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44760
diff
changeset
|
25 $PYTHON37_x64_SHA256 = "e69ed52afb5a722e5c56f6c21d594e85c17cb29f12f18bb69751cf1714e0f987" |
42023
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
26 |
47198
e768294a7182
contrib: update Python versions in Windows automation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
46353
diff
changeset
|
27 $PYTHON38_x86_URL = "https://www.python.org/ftp/python/3.8.10/python-3.8.10.exe" |
e768294a7182
contrib: update Python versions in Windows automation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
46353
diff
changeset
|
28 $PYTHON38_x86_SHA256 = "ad07633a1f0cd795f3bf9da33729f662281df196b4567fa795829f3bb38a30ac" |
e768294a7182
contrib: update Python versions in Windows automation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
46353
diff
changeset
|
29 $PYTHON38_x64_URL = "https://www.python.org/ftp/python/3.8.10/python-3.8.10-amd64.exe" |
e768294a7182
contrib: update Python versions in Windows automation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
46353
diff
changeset
|
30 $PYTHON38_x64_SHA256 = "7628244cb53408b50639d2c1287c659f4e29d3dfdb9084b11aed5870c0c6a48a" |
42023
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
31 |
47198
e768294a7182
contrib: update Python versions in Windows automation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
46353
diff
changeset
|
32 $PYTHON39_x86_URL = "https://www.python.org/ftp/python/3.9.5/python-3.9.5.exe" |
e768294a7182
contrib: update Python versions in Windows automation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
46353
diff
changeset
|
33 $PYTHON39_x86_SHA256 = "505129081a839b699a6ab9064b441ad922ef03767b5dd4241fd0c2166baf64de" |
e768294a7182
contrib: update Python versions in Windows automation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
46353
diff
changeset
|
34 $PYTHON39_x64_URL = "https://www.python.org/ftp/python/3.9.5/python-3.9.5-amd64.exe" |
e768294a7182
contrib: update Python versions in Windows automation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
46353
diff
changeset
|
35 $PYTHON39_x64_SHA256 = "84d5243088ba00c11e51905c704dbe041040dfff044f4e1ce5476844ee2e6eac" |
45690
7a907388a4a5
contrib: install Python 3.9.0
Gregory Szorc <gregory.szorc@gmail.com>
parents:
45689
diff
changeset
|
36 |
43215
c157356c03f7
contrib: update to latest Windows package versions
Gregory Szorc <gregory.szorc@gmail.com>
parents:
42649
diff
changeset
|
37 # PIP 19.2.3. |
c157356c03f7
contrib: update to latest Windows package versions
Gregory Szorc <gregory.szorc@gmail.com>
parents:
42649
diff
changeset
|
38 $PIP_URL = "https://github.com/pypa/get-pip/raw/309a56c5fd94bd1134053a541cb4657a4e47e09d/get-pip.py" |
c157356c03f7
contrib: update to latest Windows package versions
Gregory Szorc <gregory.szorc@gmail.com>
parents:
42649
diff
changeset
|
39 $PIP_SHA256 = "57e3643ff19f018f8a00dfaa6b7e4620e3c1a7a2171fd218425366ec006b3bfe" |
42023
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
40 |
43215
c157356c03f7
contrib: update to latest Windows package versions
Gregory Szorc <gregory.szorc@gmail.com>
parents:
42649
diff
changeset
|
41 $VIRTUALENV_URL = "https://files.pythonhosted.org/packages/66/f0/6867af06d2e2f511e4e1d7094ff663acdebc4f15d4a0cb0fed1007395124/virtualenv-16.7.5.tar.gz" |
c157356c03f7
contrib: update to latest Windows package versions
Gregory Szorc <gregory.szorc@gmail.com>
parents:
42649
diff
changeset
|
42 $VIRTUALENV_SHA256 = "f78d81b62d3147396ac33fc9d77579ddc42cc2a98dd9ea38886f616b33bc7fb2" |
42023
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
43 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
44 $INNO_SETUP_URL = "http://files.jrsoftware.org/is/5/innosetup-5.6.1-unicode.exe" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
45 $INNO_SETUP_SHA256 = "27D49E9BC769E9D1B214C153011978DB90DC01C2ACD1DDCD9ED7B3FE3B96B538" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
46 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
47 $MINGW_BIN_URL = "https://osdn.net/frs/redir.php?m=constant&f=mingw%2F68260%2Fmingw-get-0.6.3-mingw32-pre-20170905-1-bin.zip" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
48 $MINGW_BIN_SHA256 = "2AB8EFD7C7D1FC8EAF8B2FA4DA4EEF8F3E47768284C021599BC7435839A046DF" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
49 |
43215
c157356c03f7
contrib: update to latest Windows package versions
Gregory Szorc <gregory.szorc@gmail.com>
parents:
42649
diff
changeset
|
50 $MERCURIAL_WHEEL_FILENAME = "mercurial-5.1.2-cp27-cp27m-win_amd64.whl" |
c157356c03f7
contrib: update to latest Windows package versions
Gregory Szorc <gregory.szorc@gmail.com>
parents:
42649
diff
changeset
|
51 $MERCURIAL_WHEEL_URL = "https://files.pythonhosted.org/packages/6d/47/e031e47f7fe9b16e4e3383da47e2b0a7eae6e603996bc67a03ec4fa1b3f4/$MERCURIAL_WHEEL_FILENAME" |
c157356c03f7
contrib: update to latest Windows package versions
Gregory Szorc <gregory.szorc@gmail.com>
parents:
42649
diff
changeset
|
52 $MERCURIAL_WHEEL_SHA256 = "1d18c7f6ca1456f0f62ee65c9a50c14cbba48ce6e924930cdb10537f5c9eaf5f" |
42023
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
53 |
44760
6a6c15cea1fa
contrib: install PyOxidizer in Linux and Windows environments
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44740
diff
changeset
|
54 $RUSTUP_INIT_URL = "https://static.rust-lang.org/rustup/archive/1.21.1/x86_64-pc-windows-gnu/rustup-init.exe" |
6a6c15cea1fa
contrib: install PyOxidizer in Linux and Windows environments
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44740
diff
changeset
|
55 $RUSTUP_INIT_SHA256 = "d17df34ba974b9b19cf5c75883a95475aa22ddc364591d75d174090d55711c72" |
6a6c15cea1fa
contrib: install PyOxidizer in Linux and Windows environments
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44740
diff
changeset
|
56 |
47202
0de5eefbe4b2
contrib: install PyOxidizer 0.16.0
Gregory Szorc <gregory.szorc@gmail.com>
parents:
47199
diff
changeset
|
57 $PYOXIDIZER_URL = "https://github.com/indygreg/PyOxidizer/releases/download/pyoxidizer%2F0.16.0/PyOxidizer-0.16.0-x64.msi" |
0de5eefbe4b2
contrib: install PyOxidizer 0.16.0
Gregory Szorc <gregory.szorc@gmail.com>
parents:
47199
diff
changeset
|
58 $PYOXIDIZER_SHA256 = "2a9c58add9161c272c418d5e6dec13fbe648f624b5d26770190357e4d664f24e" |
0de5eefbe4b2
contrib: install PyOxidizer 0.16.0
Gregory Szorc <gregory.szorc@gmail.com>
parents:
47199
diff
changeset
|
59 |
42023
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
60 # Writing progress slows down downloads substantially. So disable it. |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
61 $progressPreference = 'silentlyContinue' |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
62 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
63 function Secure-Download($url, $path, $sha256) { |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
64 if (Test-Path -Path $path) { |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
65 Get-FileHash -Path $path -Algorithm SHA256 -OutVariable hash |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
66 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
67 if ($hash.Hash -eq $sha256) { |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
68 Write-Output "SHA256 of $path verified as $sha256" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
69 return |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
70 } |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
71 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
72 Write-Output "hash mismatch on $path; downloading again" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
73 } |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
74 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
75 Write-Output "downloading $url to $path" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
76 Invoke-WebRequest -Uri $url -OutFile $path |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
77 Get-FileHash -Path $path -Algorithm SHA256 -OutVariable hash |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
78 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
79 if ($hash.Hash -ne $sha256) { |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
80 Remove-Item -Path $path |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
81 throw "hash mismatch when downloading $url; got $($hash.Hash), expected $sha256" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
82 } |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
83 } |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
84 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
85 function Invoke-Process($path, $arguments) { |
47811
fb7d17496aca
contrib: log the command and args for every process installing windows deps
Matt Harbison <matt_harbison@yahoo.com>
parents:
47202
diff
changeset
|
86 echo "$path $arguments" |
fb7d17496aca
contrib: log the command and args for every process installing windows deps
Matt Harbison <matt_harbison@yahoo.com>
parents:
47202
diff
changeset
|
87 |
42023
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
88 $p = Start-Process -FilePath $path -ArgumentList $arguments -Wait -PassThru -WindowStyle Hidden |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
89 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
90 if ($p.ExitCode -ne 0) { |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
91 throw "process exited non-0: $($p.ExitCode)" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
92 } |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
93 } |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
94 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
95 function Install-Python3($name, $installer, $dest, $pip) { |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
96 Write-Output "installing $name" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
97 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
98 # We hit this when running the script as part of Simple Systems Manager in |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
99 # EC2. The Python 3 installer doesn't seem to like per-user installs |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
100 # when running as the SYSTEM user. So enable global installs if executed in |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
101 # this mode. |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
102 if ($env:USERPROFILE -eq "C:\Windows\system32\config\systemprofile") { |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
103 Write-Output "running with SYSTEM account; installing for all users" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
104 $allusers = "1" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
105 } |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
106 else { |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
107 $allusers = "0" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
108 } |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
109 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
110 Invoke-Process $installer "/quiet TargetDir=${dest} InstallAllUsers=${allusers} AssociateFiles=0 CompileAll=0 PrependPath=0 Include_doc=0 Include_launcher=0 InstallLauncherAllUsers=0 Include_pip=0 Include_test=0" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
111 Invoke-Process ${dest}\python.exe $pip |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
112 } |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
113 |
44760
6a6c15cea1fa
contrib: install PyOxidizer in Linux and Windows environments
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44740
diff
changeset
|
114 function Install-Rust($prefix) { |
6a6c15cea1fa
contrib: install PyOxidizer in Linux and Windows environments
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44740
diff
changeset
|
115 Write-Output "installing Rust" |
6a6c15cea1fa
contrib: install PyOxidizer in Linux and Windows environments
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44740
diff
changeset
|
116 $Env:RUSTUP_HOME = "${prefix}\rustup" |
6a6c15cea1fa
contrib: install PyOxidizer in Linux and Windows environments
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44740
diff
changeset
|
117 $Env:CARGO_HOME = "${prefix}\cargo" |
6a6c15cea1fa
contrib: install PyOxidizer in Linux and Windows environments
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44740
diff
changeset
|
118 |
6a6c15cea1fa
contrib: install PyOxidizer in Linux and Windows environments
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44740
diff
changeset
|
119 Invoke-Process "${prefix}\assets\rustup-init.exe" "-y --default-host x86_64-pc-windows-msvc" |
6a6c15cea1fa
contrib: install PyOxidizer in Linux and Windows environments
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44740
diff
changeset
|
120 Invoke-Process "${prefix}\cargo\bin\rustup.exe" "target add i686-pc-windows-msvc" |
47199
b128a3ae98ef
contrib: upgrade Rust in Windows automation
Gregory Szorc <gregory.szorc@gmail.com>
parents:
47198
diff
changeset
|
121 Invoke-Process "${prefix}\cargo\bin\rustup.exe" "install 1.52.0" |
44760
6a6c15cea1fa
contrib: install PyOxidizer in Linux and Windows environments
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44740
diff
changeset
|
122 Invoke-Process "${prefix}\cargo\bin\rustup.exe" "component add clippy" |
6a6c15cea1fa
contrib: install PyOxidizer in Linux and Windows environments
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44740
diff
changeset
|
123 } |
6a6c15cea1fa
contrib: install PyOxidizer in Linux and Windows environments
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44740
diff
changeset
|
124 |
42023
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
125 function Install-Dependencies($prefix) { |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
126 if (!(Test-Path -Path $prefix\assets)) { |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
127 New-Item -Path $prefix\assets -ItemType Directory |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
128 } |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
129 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
130 $pip = "${prefix}\assets\get-pip.py" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
131 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
132 Secure-Download $PYTHON37_x86_URL ${prefix}\assets\python37-x86.exe $PYTHON37_x86_SHA256 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
133 Secure-Download $PYTHON37_x64_URL ${prefix}\assets\python37-x64.exe $PYTHON37_x64_SHA256 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
134 Secure-Download $PYTHON38_x86_URL ${prefix}\assets\python38-x86.exe $PYTHON38_x86_SHA256 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
135 Secure-Download $PYTHON38_x64_URL ${prefix}\assets\python38-x64.exe $PYTHON38_x64_SHA256 |
45690
7a907388a4a5
contrib: install Python 3.9.0
Gregory Szorc <gregory.szorc@gmail.com>
parents:
45689
diff
changeset
|
136 Secure-Download $PYTHON39_x86_URL ${prefix}\assets\python39-x86.exe $PYTHON39_x86_SHA256 |
7a907388a4a5
contrib: install Python 3.9.0
Gregory Szorc <gregory.szorc@gmail.com>
parents:
45689
diff
changeset
|
137 Secure-Download $PYTHON39_x64_URL ${prefix}\assets\python39-x64.exe $PYTHON39_x64_SHA256 |
42023
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
138 Secure-Download $PIP_URL ${pip} $PIP_SHA256 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
139 Secure-Download $VIRTUALENV_URL ${prefix}\assets\virtualenv.tar.gz $VIRTUALENV_SHA256 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
140 Secure-Download $VS_BUILD_TOOLS_URL ${prefix}\assets\vs_buildtools.exe $VS_BUILD_TOOLS_SHA256 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
141 Secure-Download $INNO_SETUP_URL ${prefix}\assets\InnoSetup.exe $INNO_SETUP_SHA256 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
142 Secure-Download $MINGW_BIN_URL ${prefix}\assets\mingw-get-bin.zip $MINGW_BIN_SHA256 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
143 Secure-Download $MERCURIAL_WHEEL_URL ${prefix}\assets\${MERCURIAL_WHEEL_FILENAME} $MERCURIAL_WHEEL_SHA256 |
44760
6a6c15cea1fa
contrib: install PyOxidizer in Linux and Windows environments
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44740
diff
changeset
|
144 Secure-Download $RUSTUP_INIT_URL ${prefix}\assets\rustup-init.exe $RUSTUP_INIT_SHA256 |
47202
0de5eefbe4b2
contrib: install PyOxidizer 0.16.0
Gregory Szorc <gregory.szorc@gmail.com>
parents:
47199
diff
changeset
|
145 Secure-Download $PYOXIDIZER_URL ${prefix}\assets\PyOxidizer.msi $PYOXIDIZER_SHA256 |
42023
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
146 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
147 Install-Python3 "Python 3.7 32-bit" ${prefix}\assets\python37-x86.exe ${prefix}\python37-x86 ${pip} |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
148 Install-Python3 "Python 3.7 64-bit" ${prefix}\assets\python37-x64.exe ${prefix}\python37-x64 ${pip} |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
149 Install-Python3 "Python 3.8 32-bit" ${prefix}\assets\python38-x86.exe ${prefix}\python38-x86 ${pip} |
47813
7a0d7c34e0ab
contrib: comment out the 64-bit py38 dependency installation on Windows
Matt Harbison <matt_harbison@yahoo.com>
parents:
47812
diff
changeset
|
150 # Install-Python3 "Python 3.8 64-bit" ${prefix}\assets\python38-x64.exe ${prefix}\python38-x64 ${pip} |
45690
7a907388a4a5
contrib: install Python 3.9.0
Gregory Szorc <gregory.szorc@gmail.com>
parents:
45689
diff
changeset
|
151 Install-Python3 "Python 3.9 32-bit" ${prefix}\assets\python39-x86.exe ${prefix}\python39-x86 ${pip} |
7a907388a4a5
contrib: install Python 3.9.0
Gregory Szorc <gregory.szorc@gmail.com>
parents:
45689
diff
changeset
|
152 Install-Python3 "Python 3.9 64-bit" ${prefix}\assets\python39-x64.exe ${prefix}\python39-x64 ${pip} |
42023
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
153 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
154 Write-Output "installing Visual Studio 2017 Build Tools and SDKs" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
155 Invoke-Process ${prefix}\assets\vs_buildtools.exe "--quiet --wait --norestart --nocache --channelUri https://aka.ms/vs/15/release/channel --add Microsoft.VisualStudio.Workload.MSBuildTools --add Microsoft.VisualStudio.Component.Windows10SDK.17763 --add Microsoft.VisualStudio.Workload.VCTools --add Microsoft.VisualStudio.Component.Windows10SDK --add Microsoft.VisualStudio.Component.VC.140" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
156 |
47202
0de5eefbe4b2
contrib: install PyOxidizer 0.16.0
Gregory Szorc <gregory.szorc@gmail.com>
parents:
47199
diff
changeset
|
157 Write-Output "installing PyOxidizer" |
0de5eefbe4b2
contrib: install PyOxidizer 0.16.0
Gregory Szorc <gregory.szorc@gmail.com>
parents:
47199
diff
changeset
|
158 Invoke-Process msiexec.exe "/i ${prefix}\assets\PyOxidizer.msi /l* ${prefix}\assets\PyOxidizer.log /quiet" |
0de5eefbe4b2
contrib: install PyOxidizer 0.16.0
Gregory Szorc <gregory.szorc@gmail.com>
parents:
47199
diff
changeset
|
159 |
44760
6a6c15cea1fa
contrib: install PyOxidizer in Linux and Windows environments
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44740
diff
changeset
|
160 Install-Rust ${prefix} |
6a6c15cea1fa
contrib: install PyOxidizer in Linux and Windows environments
Gregory Szorc <gregory.szorc@gmail.com>
parents:
44740
diff
changeset
|
161 |
42023
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
162 Write-Output "installing Inno Setup" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
163 Invoke-Process ${prefix}\assets\InnoSetup.exe "/SP- /VERYSILENT /SUPPRESSMSGBOXES" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
164 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
165 Write-Output "extracting MinGW base archive" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
166 Expand-Archive -Path ${prefix}\assets\mingw-get-bin.zip -DestinationPath "${prefix}\MinGW" -Force |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
167 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
168 Write-Output "updating MinGW package catalogs" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
169 Invoke-Process ${prefix}\MinGW\bin\mingw-get.exe "update" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
170 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
171 Write-Output "installing MinGW packages" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
172 Invoke-Process ${prefix}\MinGW\bin\mingw-get.exe "install msys-base msys-coreutils msys-diffutils msys-unzip" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
173 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
174 # Construct a virtualenv useful for bootstrapping. It conveniently contains a |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
175 # Mercurial install. |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
176 Write-Output "creating bootstrap virtualenv with Mercurial" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
177 Invoke-Process "$prefix\python27-x64\Scripts\virtualenv.exe" "${prefix}\venv-bootstrap" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
178 Invoke-Process "${prefix}\venv-bootstrap\Scripts\pip.exe" "install ${prefix}\assets\${MERCURIAL_WHEEL_FILENAME}" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
179 } |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
180 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
181 function Clone-Mercurial-Repo($prefix, $repo_url, $dest) { |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
182 Write-Output "cloning $repo_url to $dest" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
183 # TODO Figure out why CA verification isn't working in EC2 and remove |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
184 # --insecure. |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
185 Invoke-Process "${prefix}\venv-bootstrap\Scripts\hg.exe" "clone --insecure $repo_url $dest" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
186 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
187 # Mark repo as non-publishing by default for convenience. |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
188 Add-Content -Path "$dest\.hg\hgrc" -Value "`n[phases]`npublish = false" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
189 } |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
190 |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
191 $prefix = "c:\hgdev" |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
192 Install-Dependencies $prefix |
bf87d34a675c
contrib: PowerShell script to install development dependencies
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
193 Clone-Mercurial-Repo $prefix "https://www.mercurial-scm.org/repo/hg" $prefix\src |