Skip to content

Commit 2b32aa7

Browse files
committed
Microsoft MPI: Install release 10.1.3 from Microsoft Download Center
1 parent 8d47800 commit 2b32aa7

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

setup-msmpi.ps1

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,23 @@
11
$ErrorActionPreference = "Stop"
22

3-
$rooturl = "https://github.com/microsoft/Microsoft-MPI/releases/download"
4-
$version = "10.1.1"
5-
$baseurl = "$rooturl/v$version"
3+
$version = "10.1.3"
4+
5+
$rooturl = "https://download.microsoft.com/download/"
6+
$hashurl = @{
7+
"5.0.0" = "3/7/6/3764A48C-5C4E-4E4D-91DA-68CED9032EDE"
8+
"6.0.0" = "6/4/A/64A7852A-A8C3-476D-908C-30501F761DF3"
9+
"7.0.0" = "D/7/B/D7BBA00F-71B7-436B-80BC-4D22F2EE9862"
10+
"7.1.0" = "E/8/A/E8A080AF-040D-43FF-97B4-065D4F220301"
11+
"8.0.0" = "B/2/E/B2EB83FE-98C2-4156-834A-E1711E6884FB"
12+
"8.1.0" = "D/B/B/DBB64BA1-7B51-43DB-8BF1-D1FB45EACF7A"
13+
"9.0.0" = "2/E/C/2EC96D7F-687B-4613-80F6-E10F670A2D97"
14+
"9.0.1" = "4/A/6/4A6AAED8-200C-457C-AB86-37505DE4C90D"
15+
"10.0.0" = "A/E/0/AE002626-9D9D-448D-8197-1EA510E297CE"
16+
"10.1.1" = "2/9/e/29efe9b1-16d7-4912-a229-6734b0c4e235"
17+
"10.1.2" = "a/5/2/a5207ca5-1203-491a-8fb8-906fd68ae623"
18+
"10.1.3" = "7/2/7/72731ebb-b63c-4170-ade7-836966263a8f"
19+
}
20+
$baseurl = $rooturl + $hashurl[$version]
621

722
$tempdir = $Env:RUNNER_TEMP
823
$msmpisdk = Join-Path $tempdir msmpisdk.msi

0 commit comments

Comments
 (0)