mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
58 lines
1.4 KiB
PowerShell
58 lines
1.4 KiB
PowerShell
################################################################################
|
|
## File: Validate-MinGW.ps1
|
|
## Desc: Validate MinGW
|
|
################################################################################
|
|
|
|
if (Get-Command -Name 'gcc')
|
|
{
|
|
Write-Host "gcc is successfully installed:"
|
|
gcc --version | Write-Host
|
|
}
|
|
else
|
|
{
|
|
Write-Host "gcc is not on PATH"
|
|
exit 1
|
|
}
|
|
|
|
if (Get-Command -Name 'g++')
|
|
{
|
|
Write-Host "g++ is successfully installed:"
|
|
g++ --version | Write-Host
|
|
}
|
|
else
|
|
{
|
|
Write-Host "g++ is not on PATH"
|
|
exit 1
|
|
}
|
|
|
|
if (Get-Command -Name 'make')
|
|
{
|
|
Write-Host "make is successfully installed:"
|
|
make --version | Write-Host
|
|
}
|
|
else
|
|
{
|
|
Write-Host "make is not on PATH"
|
|
exit 1
|
|
}
|
|
|
|
# Adding description of the software to Markdown
|
|
|
|
# `gcc --version` gives output like:
|
|
# gcc.exe (x86_64-posix-seh-rev0, Built by MinGW-W64 project) 5.3.0
|
|
# Copyright (C) 2015 Free Software Foundation, Inc.
|
|
# This is free software; see the source for copying conditions. There is NO
|
|
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
$SoftwareName = "MinGW"
|
|
$(gcc --version).Split([System.Environment]::NewLine)[0] -match "\d\.\d\.\d$"
|
|
$minGwVersion = $matches[0]
|
|
|
|
$Description = @"
|
|
_Version:_ $minGwVersion<br/>
|
|
_Environment:_
|
|
* PATH: contains location of the MinGW 'bin' directory
|
|
"@
|
|
|
|
Add-SoftwareDetailsToMarkdown -SoftwareName $SoftwareName -DescriptionMarkdown $Description
|