Compare commits

..

6 Commits

Author SHA1 Message Date
gitea-actions[bot] d59ac60c2b replace github.com/actions/go-versions to golang.google.cn/dl 2024-08-25 04:24:08 +00:00
github-actions[bot] 070c2a1b84
Update versions-manifest (#105)
Co-authored-by: Service account <no-reply@microsoft.com>
2024-08-14 10:54:57 -05:00
github-actions[bot] 06b75e6f50
Update versions-manifest (#104)
Co-authored-by: Service account <no-reply@microsoft.com>
2024-08-07 10:10:22 -05:00
gowridurgad 435e8c8778
Fix for CodeQL analysis workflow failures (#103)
* Update build-go-packages.yml

* Update build-go-packages.yml

* Update codeql-analysis.yml

* Update build-go-packages.yml

* Update build-go-packages.yml

* Update build-go-packages.yml
2024-07-25 08:50:52 -05:00
aparnajyothi-y ef611dd539
Add test jobs for arm64 architecture (#101)
* Update Go.Tests.ps1

* Update Go.Tests.ps1

* Update Go.Tests.ps1
2024-07-09 10:12:14 -05:00
github-actions[bot] b1013e0081
Update versions-manifest (#102)
Co-authored-by: Service account <no-reply@microsoft.com>
2024-07-03 08:43:05 -05:00
4 changed files with 1220 additions and 1003 deletions

View File

@ -23,7 +23,7 @@ on:
jobs: jobs:
go: go:
name: Go name: Go
uses: actions/versions-package-tools/.github/workflows/build-tool-packages.yml@test-arm64 uses: actions/versions-package-tools/.github/workflows/build-tool-packages.yml@main
with: with:
tool-name: "go" tool-name: "go"
tool-version: ${{ inputs.VERSION || '1.19.0' }} tool-version: ${{ inputs.VERSION || '1.19.0' }}

View File

@ -13,4 +13,4 @@ jobs:
name: CodeQL analysis name: CodeQL analysis
uses: actions/reusable-workflows/.github/workflows/codeql-analysis.yml@main uses: actions/reusable-workflows/.github/workflows/codeql-analysis.yml@main
with: with:
languages: "['go']" languages: '["go"]'

View File

@ -1,7 +1,9 @@
Import-Module (Join-Path $PSScriptRoot "../helpers/pester-extensions.psm1") Import-Module (Join-Path $PSScriptRoot "../helpers/pester-extensions.psm1")
Import-Module (Join-Path $PSScriptRoot "../helpers/common-helpers.psm1") Import-Module (Join-Path $PSScriptRoot "../helpers/common-helpers.psm1")
BeforeAll { Describe "Go" {
BeforeAll {
Set-Location -Path "source" Set-Location -Path "source"
$sourceLocation = Get-Location $sourceLocation = Get-Location
@ -18,25 +20,19 @@ BeforeAll {
} }
} }
Describe "Go" {
It "is available" { It "is available" {
"go version" | Should -ReturnZeroExitCode "go version" | Should -ReturnZeroExitCode
} }
It "version is correct" { It "version is correct" {
[version]$Version = $env:VERSION [version]$Version = $env:VERSION
$versionOutput = Invoke-Expression -Command "go version" $versionOutput = Invoke-Expression -Command "go version"
$finalVersion = $Version.ToString(3)
# Extract only the version number from the go version command output. If ($Version.Build -eq "0"){
$installedVersion = ($versionOutput -split " ")[2] -replace "go", "" -replace "v", "" $finalVersion = $Version.ToString(2)
}
$finalVersion = $Version.ToString(3) $versionOutput | Should -Match $finalVersion
If ($Version.Build -eq "0"){
$finalVersion = $Version.ToString(2)
} }
$installedVersion | Should -Match $finalVersion
}
It "is used from tool-cache" { It "is used from tool-cache" {
$goPath = (Get-Command "go").Path $goPath = (Get-Command "go").Path
@ -48,20 +44,26 @@ Describe "Go" {
$goPath.startsWith($expectedPath) | Should -BeTrue -Because "'$goPath' is not started with '$expectedPath'" $goPath.startsWith($expectedPath) | Should -BeTrue -Because "'$goPath' is not started with '$expectedPath'"
} }
if ($env:RUNNER_TYPE -eq "GitHub") { It "cached version is used without downloading" {
# Analyze output of previous steps to check if Node.js was consumed from cache or downloaded
$useNodeLogFile = Get-UseNodeLogs if ($env:RUNNER_TYPE -eq "self-hosted") {
$useNodeLogFile | Should -Exist # Get the installed version of Go
$useNodeLogContent = Get-Content $useNodeLogFile -Raw $goVersion = Invoke-Expression "go version"
$useNodeLogContent | Should -Match "Found in cache" # Check if Go is installed
} else { $goVersion | Should -Not -BeNullOrEmpty
# Get the installed version of Node.js # Check if the installed version of Go is the expected version
$nodeVersion = Invoke-Expression "node --version" $installedVersion = $goVersion -split " " | Select-Object -Index 2
# Check if Node.js is installed $installedVersion = $installedVersion -replace "go", "" -replace "v", ""
$nodeVersion | Should -Not -BeNullOrEmpty $expectedVersion = $env:VERSION -replace ".0", ""
# Check if the installed version of Node.js is the expected version $installedVersion | Should -BeLike "$expectedVersion*"
$nodeVersion | Should -Match $env:VERSION }else {
} # Analyze output of previous steps to check if Go was consumed from cache or downloaded
$useGoLogFile = Get-UseGoLogs
$useGoLogFile | Should -Exist
$useGoLogContent = Get-Content $useGoLogFile -Raw
$useGoLogContent | Should -Match "Found in cache"
}
}
It "Run simple code" { It "Run simple code" {

File diff suppressed because it is too large Load Diff