-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Windows images update on September 5 Visual Studio 2019 version 16.11.2 Google Chrome 93.0.4577.63 Microsoft Edge 92.0.902.84 Firefox 91.0.2 Go 1.17, 1.16.7, 1.15.15 Python 3.9.7, 3.8.10, Pip 21.2.4 CMake 3.21.2 .NET Core 3.1.412, 5.0.400 Ruby 3.0.2-1, 2.7.4-1 and 2.6.8-1 PowerShell Core 7.1.4 OpenSSL 1.1.1L * Update LLVM and other tools LLVM 12.0.1 Boost 1.77.0 PostgreSQL 10.18, 11.13, 12.8, 13.4 * Node 16.8.0, 14.17.6, 12.22.6 * Build VS 2019 part 2 * Fix URL for .NET 4.7.2 DevPack * Node 16.8.0
- Loading branch information
1 parent
3fba70f
commit b31c9c5
Showing
23 changed files
with
123 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
. "$PSScriptRoot\common.ps1" | ||
|
||
Write-Host "Installing boost 1.77.0..." -ForegroundColor Cyan | ||
|
||
$StopWatch = New-Object System.Diagnostics.Stopwatch | ||
$StopWatch.Start() | ||
|
||
New-Item 'C:\Libraries' -ItemType Directory -Force | ||
|
||
# 1.77.0 | ||
Measure-Command { | ||
Write-Host "Installing boost 1.77.0..." -ForegroundColor Cyan | ||
|
||
Write-Host "Downloading..." | ||
$zipPath = "$env:TEMP\boost_1_77_0.7z" | ||
(New-Object Net.WebClient).DownloadFile("https://appveyordownloads.blob.core.windows.net/misc/boost_1_77_0.7z", $zipPath) | ||
|
||
Write-Host "Unpacking..." | ||
7z x $zipPath -o"C:\Libraries" | Out-Null | ||
Remove-Item $zipPath | ||
|
||
Write-Host "Compressing..." | ||
Start-ProcessWithOutput "compact /c /i /q /s:C:\Libraries\boost_1_77_0" -IgnoreStdOut | ||
} | ||
|
||
$StopWatch.Stop() | ||
Write-Host "Boost libraries installed in $("{0:hh}:{0:mm}:{0:ss}" -f $StopWatch.elapsed)" -ForegroundColor Green |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
$110Letter = "L" | ||
$111Letter = "k" | ||
$111Letter = "L" | ||
$102Letter = "u" | ||
|
||
function GetUninstallString($productName) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#Write-Host "Pre-installing vcredist2015 (PostgreSQL 10.6 instalation has issues when doing it)..." -ForegroundColor Cyan | ||
#choco install vcredist2015 | ||
|
||
Write-Host "Installing PostgreSQL 13.4..." -ForegroundColor Cyan | ||
|
||
Write-Host "Downloading..." | ||
# http://www.enterprisedb.com/products-services-training/pgdownload#windows | ||
$exePath = "$env:TEMP\postgresql-13.4-1-windows-x64.exe" | ||
(New-Object Net.WebClient).DownloadFile('https://get.enterprisedb.com/postgresql/postgresql-13.4-1-windows-x64.exe', $exePath) | ||
|
||
Write-Host "Installing..." | ||
cmd /c start /wait $exePath --mode unattended --install_runtimes 0 --superpassword Password12! | ||
Remove-Item $exePath -ErrorAction SilentlyContinue | ||
|
||
Write-Host "Setting up services..." | ||
Stop-Service postgresql-x64-13 | ||
Set-Service -Name postgresql-x64-13 -StartupType Manual | ||
|
||
Write-Host "PostgreSQL 13.4 installed" -ForegroundColor Green |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.