mirror of
https://gitea.com/actions/go-versions.git
synced 2025-04-06 15:29:48 +00:00
Implement builders to build Go from source code
This commit is contained in:
25
installers/nix-setup-template.sh
Normal file
25
installers/nix-setup-template.sh
Normal file
@ -0,0 +1,25 @@
|
||||
set -e
|
||||
|
||||
GO_VERSION={0}
|
||||
|
||||
GO_TOOLCACHE_PATH=$AGENT_TOOLSDIRECTORY/go
|
||||
GO_TOOLCACHE_VERSION_PATH=$GO_TOOLCACHE_PATH/$GO_VERSION
|
||||
GO_TOOLCACHE_VERSION_ARCH_PATH=$GO_TOOLCACHE_VERSION_PATH/x64
|
||||
|
||||
echo "Check if Go hostedtoolcache folder exist..."
|
||||
if [ ! -d $GO_TOOLCACHE_PATH ]; then
|
||||
mkdir -p $GO_TOOLCACHE_PATH
|
||||
fi
|
||||
|
||||
echo "Delete Go $GO_VERSION if installed"
|
||||
rm -rf $GO_TOOLCACHE_VERSION_PATH
|
||||
|
||||
echo "Create Go $GO_VERSION folder"
|
||||
mkdir -p $GO_TOOLCACHE_VERSION_ARCH_PATH
|
||||
|
||||
echo "Copy Go binaries to hostedtoolcache folder"
|
||||
cp -R ./* $GO_TOOLCACHE_VERSION_ARCH_PATH
|
||||
rm $GO_TOOLCACHE_VERSION_ARCH_PATH/setup.sh
|
||||
|
||||
echo "Create complete file"
|
||||
touch $GO_TOOLCACHE_VERSION_PATH/x64.complete
|
35
installers/win-setup-template.ps1
Normal file
35
installers/win-setup-template.ps1
Normal file
@ -0,0 +1,35 @@
|
||||
$ErrorActionPreference = "Stop"
|
||||
|
||||
[version]$Version = "{{__VERSION__}}"
|
||||
[string]$Architecture = "{{__ARCHITECTURE__}}"
|
||||
|
||||
$ToolcacheRoot = $env:AGENT_TOOLSDIRECTORY
|
||||
if ([string]::IsNullOrEmpty($ToolcacheRoot)) {
|
||||
# GitHub images don't have `AGENT_TOOLSDIRECTORY` variable
|
||||
$ToolcacheRoot = $env:RUNNER_TOOL_CACHE
|
||||
}
|
||||
$GoToolcachePath = Join-Path -Path $ToolcacheRoot -ChildPath "go"
|
||||
$GoToolcacheVersionPath = Join-Path -Path $GoToolcachePath -ChildPath $Version.ToString()
|
||||
$GoToolcacheArchitecturePath = Join-Path $GoToolcacheVersionPath $Architecture
|
||||
|
||||
Write-Host "Check if Go hostedtoolcache folder exist..."
|
||||
if (-not (Test-Path $GoToolcachePath)) {
|
||||
New-Item -ItemType Directory -Path $GoToolcachePath | Out-Null
|
||||
}
|
||||
|
||||
Write-Host "Delete Go $Version if installed"
|
||||
if (Test-Path $GoToolcacheVersionPath) {
|
||||
Remove-Item $GoToolcachePath -Recurse -Force | Out-Null
|
||||
}
|
||||
|
||||
Write-Host "Create Go $Version folder"
|
||||
if (-not (Test-Path $GoToolcacheArchitecturePath)) {
|
||||
New-Item -ItemType Directory -Path $GoToolcacheArchitecturePath | Out-Null
|
||||
}
|
||||
|
||||
Write-Host "Copy Go binaries to hostedtoolcache folder"
|
||||
Copy-Item -Path * -Destination $GoToolcacheArchitecturePath -Recurse
|
||||
Remove-Item $GoToolcacheArchitecturePath\setup.ps1 -Force | Out-Null
|
||||
|
||||
Write-Host "Create complete file"
|
||||
New-Item -ItemType File -Path $GoToolcacheVersionPath -Name "$Architecture.complete" | Out-Null
|
Reference in New Issue
Block a user