Fix Ci/Cd: Get Node another way — try Gitea cache, then Arvan / AWS / GCR, and only then Docker Hub; once pulled, store it on Gitea for next time. #74

Merged
admin merged 6 commits from feature/ci-cd into master 2026-09-05 23:00:32 +03:30
Showing only changes of commit 005e0b0394 - Show all commits

View File

@@ -1,5 +1,6 @@
# Prefer a Gitea-hosted node:20-alpine so docker build does not HEAD registry-1.docker.io. # Prefer a Gitea-hosted node:20-alpine so docker build does not HEAD registry-1.docker.io.
# Order: local Gitea tag pull Gitea local Docker Hub tag pull Hub (retries) tag/push Gitea. # Order: local Gitea tag -> pull Gitea -> local Docker Hub tag -> pull Hub (retries) -> tag/push Gitea.
# ASCII only: Windows PowerShell 5.1 + act_runner mis-parses backtick escapes in this file.
param( param(
[Parameter(Mandatory = $true)][string]$RegistryPrefix, [Parameter(Mandatory = $true)][string]$RegistryPrefix,
[string]$OutFile = '.ci-node-image', [string]$OutFile = '.ci-node-image',
@@ -8,6 +9,7 @@ param(
$ErrorActionPreference = 'Continue' $ErrorActionPreference = 'Continue'
$mirror = "$RegistryPrefix/node:20-alpine" $mirror = "$RegistryPrefix/node:20-alpine"
$nl = [char]10
function Test-Image([string]$Name) { function Test-Image([string]$Name) {
docker image inspect $Name 2>&1 | Out-Null docker image inspect $Name 2>&1 | Out-Null
@@ -26,7 +28,8 @@ function Invoke-Pull([string]$Name, [int]$Attempts) {
function Save-Choice([string]$Name) { function Save-Choice([string]$Name) {
$utf8 = New-Object System.Text.UTF8Encoding $false $utf8 = New-Object System.Text.UTF8Encoding $false
[System.IO.File]::WriteAllText((Join-Path (Get-Location) $OutFile), $Name + "`n", $utf8) $path = Join-Path (Get-Location) $OutFile
[System.IO.File]::WriteAllText($path, ($Name + $nl), $utf8)
Write-Host "NODE_IMAGE=$Name" Write-Host "NODE_IMAGE=$Name"
} }
@@ -59,9 +62,9 @@ if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
docker push $mirror docker push $mirror
if ($LASTEXITCODE -ne 0) { if ($LASTEXITCODE -ne 0) {
Write-Host "Could not push $mirror docker build will use the local tag (legacy builder)." Write-Host "Could not push $mirror - docker build will use the local tag (legacy builder)."
$utf8 = New-Object System.Text.UTF8Encoding $false $flag = Join-Path (Get-Location) '.ci-use-legacy-builder'
[System.IO.File]::WriteAllText((Join-Path (Get-Location) '.ci-use-legacy-builder'), "1`n", $utf8) New-Item -ItemType File -Path $flag -Force | Out-Null
} }
Save-Choice $mirror Save-Choice $mirror