mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-26 05:27:19 +00:00
7020946a2e
* PowerShell script * Patch Readme.md
228 lines
7.6 KiB
PowerShell
228 lines
7.6 KiB
PowerShell
<#
|
|
Copyright 2021 The Erigon Authors
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
#>
|
|
|
|
$goErrorText = @"
|
|
|
|
Requirement Error.
|
|
You need to have Go Programming Language (aka golang) installed.
|
|
Minimum required version is 1.16
|
|
Please visit https://golang.org/dl/ and download the appropriate
|
|
installer.
|
|
|
|
"@
|
|
|
|
$chocolateyErrorText = @"
|
|
|
|
Requirement Error.
|
|
For this script to run properly you need to install
|
|
chocolatey [https://chocolatey.org/] with the following
|
|
mandatory components:
|
|
|
|
- cmake 3.20.2
|
|
- make 4.3
|
|
- mingw 10.2.0
|
|
|
|
"@
|
|
|
|
$chocolateyPathErrorText = @"
|
|
|
|
Environment PATH Error.
|
|
Chocolatey install has been detected but the environment
|
|
variable PATH does not include a full path to its binaries
|
|
Please amend your setup and ensure the following
|
|
chocolatey directory is properly inserted into your PATH
|
|
environment variable.
|
|
|
|
"@
|
|
|
|
$privilegeErrorText = @"
|
|
|
|
Privileges Error !
|
|
You must run this script with Administrator privileges
|
|
|
|
"@
|
|
|
|
$Error.Clear()
|
|
$ErrorActionPreference = "SilentlyContinue"
|
|
|
|
Set-Variable -Name "MyContext" -Value ([hashtable]::Synchronized(@{})) -Scope Script
|
|
$MyContext.Name = $MyInvocation.MyCommand.Name
|
|
$MyContext.Definition = $MyInvocation.MyCommand.Definition
|
|
$MyContext.Directory = (Split-Path (Resolve-Path $MyInvocation.MyCommand.Definition) -Parent)
|
|
$MyContext.StartDir = (Get-Location -PSProvider FileSystem).ProviderPath
|
|
$MyContext.WinVer = (Get-WmiObject Win32_OperatingSystem).Version.Split(".")
|
|
$MyContext.PSVer = [int]$PSVersionTable.PSVersion.Major
|
|
|
|
# Test we have ADMIN Privileges
|
|
$myWindowsID = [System.Security.Principal.WindowsIdentity]::GetCurrent();
|
|
$myWindowsPrincipal = New-Object System.Security.Principal.WindowsPrincipal($myWindowsID);
|
|
$adminRole = [System.Security.Principal.WindowsBuiltInRole]::Administrator;
|
|
if (!($myWindowsPrincipal.IsInRole($adminRole))) {
|
|
Write-Host $privilegeErrorText
|
|
return
|
|
}
|
|
|
|
|
|
# Test GO is installed and is at least 1.16
|
|
$goInstalled = (Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | Where-Object {$_.DisplayName -imatch "^Go\ Programming\ Language"})
|
|
if(!$goInstalled) {
|
|
Write-Host $goErrorText
|
|
return
|
|
}
|
|
Write-Host " Found GO version $($goInstalled.DisplayVersion)"
|
|
$goVersionMajor = [int]$goInstalled.VersionMajor
|
|
$goVersionMinor = [int]$goInstalled.VersionMinor
|
|
if($goVersionMajor -lt 1 -or $goVersionMinor -lt 16) {
|
|
Write-Host $goErrorText
|
|
return
|
|
}
|
|
|
|
# Test Chocolatey Install
|
|
if(!(Test-Path env:chocolateyInstall)) {
|
|
Write-Host $chocolateyErrorText
|
|
return
|
|
}
|
|
$chocolateyPath = $env:ChocolateyInstall
|
|
|
|
# Test Chocolatey bin directory is actually in %PATH%
|
|
$chocolateyBinPath = (Join-Path $chocolateyPath "bin")
|
|
$chocolateyBinPathInPath = $false
|
|
$pathExpanded = $env:Path.Split(";")
|
|
for($i=0; $i -lt $pathExpanded.Count; $i++){
|
|
$pathItem = $pathExpanded[$i]
|
|
if($pathItem -ieq $chocolateyBinPath){
|
|
Write-Host " Found $($chocolateyBinPath) in PATH"
|
|
$chocolateyBinPathInPath = $true
|
|
}
|
|
}
|
|
if(!$chocolateyBinPathInPath) {
|
|
Write-Host $chocolateyPathErrorText
|
|
Write-Host $chocolateyBinPath
|
|
return
|
|
}
|
|
|
|
# Test Chocolatey Components
|
|
$chocolateyHasCmake = $false
|
|
$chocolateyHasMake = $false
|
|
$chocolateyHasMingw = $false
|
|
$chocolateyComponents = @(clist -l)
|
|
for($i=0; $i -lt $chocolateyComponents.Count; $i++){
|
|
$item = $chocolateyComponents[$i]
|
|
if($item -imatch "^cmake\ [0-9]") {
|
|
$chocolateyHasCmake = $true
|
|
Write-Host " Found Chocolatey component $($item)"
|
|
}
|
|
if($item -imatch "^make\ [0-9]") {
|
|
$chocolateyHasMake = $true
|
|
Write-Host " Found Chocolatey component $($item)"
|
|
}
|
|
if($item -imatch "^mingw\ [0-9]") {
|
|
$chocolateyHasMingw = $true
|
|
Write-Host " Found Chocolatey component $($item)"
|
|
}
|
|
}
|
|
If(!$chocolateyHasCmake -or !$chocolateyHasMake -or !$chocolateyHasMingw) {
|
|
Write-Host $chocolateyErrorText
|
|
return
|
|
}
|
|
|
|
# Enter MDBX directory and build libmdbx.dll
|
|
Write-Host " Building libmdbx.dll ..."
|
|
Set-Location (Join-Path $MyContext.Directory "ethdb\mdbx\dist")
|
|
cmake -G "MinGW Makefiles" . -D CMAKE_MAKE_PROGRAM:PATH=$(Join-Path $chocolateyBinPath "make.exe") -D MDBX_BUILD_SHARED_LIBRARY:BOOL=ON -D MDBX_WITHOUT_MSVC_CRT:BOOOL=OFF
|
|
if($LASTEXITCODE) {
|
|
Write-Host "An error has occurred while configuring MDBX dll"
|
|
return
|
|
}
|
|
cmake --build .
|
|
if($LASTEXITCODE -or !(Test-Path "libmdbx.dll" -PathType leaf)) {
|
|
Write-Host "An error has occurred while building MDBX dll or libmdbx.dll cannot be found"
|
|
return
|
|
}
|
|
|
|
# Copy libmdbx.dll into %windir%\System32 directory
|
|
# Note! default behavior is to overwrite
|
|
Copy-Item libmdbx.dll (Join-Path $env:SystemRoot system32)
|
|
if(!$?) {
|
|
Write-Host " Error ! Could not copy libmdbx.dll to $(Join-Path $env:SystemRoot system32)"
|
|
Write-Host " What can you do : "
|
|
Write-Host " - Check your permissions to directory "
|
|
Write-Host " - Check there's an already existing libmdbx.dll file "
|
|
Write-Host " - Check no instance of Erigon with mdbx is currently running "
|
|
return
|
|
}
|
|
|
|
# Return to source folder
|
|
Set-Location $MyContext.Directory
|
|
|
|
# Build erigon binaries
|
|
Set-Variable -Name "Erigon" -Value ([hashtable]::Synchronized(@{})) -Scope Script
|
|
$Erigon.Commit = [string]@(git.exe rev-list -1 HEAD)
|
|
$Erigon.Branch = [string]@(git.exe rev-parse --abbrev-ref HEAD)
|
|
$Erigon.Build = "go build -v -trimpath -tags=mdbx -ldflags ""-X main.gitCommit=$($Erigon.Commit) -X main.gitBranch=$($Erigon.Branch)"""
|
|
$Erigon.BinPath = [string](Join-Path $MyContext.StartDir "\build\bin")
|
|
$env:GO111MODULE = "on"
|
|
|
|
Write-Host " Building tg ..."
|
|
$outExecutable = [string](Join-Path $Erigon.BinPath "tg.exe")
|
|
$BuildCommand = "$($Erigon.Build) -o ""$($outExecutable)"" ./cmd/tg"
|
|
$BuildCommand += ';$?'
|
|
$success = Invoke-Expression -Command $BuildCommand
|
|
if (-not $success) {
|
|
Write-Host "Could not build tg executable"
|
|
return
|
|
}
|
|
|
|
Write-Host " Building rpcdaemon ..."
|
|
$outExecutable = [string](Join-Path $Erigon.BinPath "rpcdaemon.exe")
|
|
$BuildCommand = "$($Erigon.Build) -o ""$($outExecutable)"" ./cmd/rpcdaemon"
|
|
$BuildCommand += ';$?'
|
|
$success = Invoke-Expression -Command $BuildCommand
|
|
if (-not $success) {
|
|
Write-Host "Could not build rpcdaemon executable"
|
|
return
|
|
}
|
|
|
|
Write-Host " Building integration ..."
|
|
$outExecutable = [string](Join-Path $Erigon.BinPath "integration.exe")
|
|
$BuildCommand = "$($Erigon.Build) -o ""$($outExecutable)"" ./cmd/integration"
|
|
$BuildCommand += ';$?'
|
|
$success = Invoke-Expression -Command $BuildCommand
|
|
if (-not $success) {
|
|
Write-Host "Could not build integration executable"
|
|
return
|
|
}
|
|
|
|
Write-Host " Building rpctest ..."
|
|
$outExecutable = [string](Join-Path $Erigon.BinPath "rpctest.exe")
|
|
$BuildCommand = "$($Erigon.Build) -o ""$($outExecutable)"" ./cmd/rpctest"
|
|
$BuildCommand += ';$?'
|
|
$success = Invoke-Expression -Command $BuildCommand
|
|
if (-not $success) {
|
|
Write-Host "Could not build rpctest executable"
|
|
return
|
|
}
|
|
|
|
Write-Host " Building state ..."
|
|
$outExecutable = [string](Join-Path $Erigon.BinPath "state.exe")
|
|
$BuildCommand = "$($Erigon.Build) -o ""$($outExecutable)"" ./cmd/state"
|
|
$BuildCommand += ';$?'
|
|
$success = Invoke-Expression -Command $BuildCommand
|
|
if (-not $success) {
|
|
Write-Host "Could not build state executable"
|
|
return
|
|
}
|