i still dont know
release / build (push) Failing after 1m31s

This commit is contained in:
lda
2025-08-25 05:12:11 +07:00 Unverified
parent a5935bb1a9
commit 9aa1c44246
3 changed files with 99 additions and 26 deletions
+38 -7
View File
@@ -1,8 +1,16 @@
# Starts the Gitea act_runner if not already running.
# Usage: ./scripts/act_runner.ps1 -Config "C:/Users/Admin/Documents/gitea/.runner" -RunnerPath "C:/Users/Admin/Documents/gitea/act_runner.exe"
# Usage: ./scripts/act_runner.ps1 -Config "C:/Users/Admin/Documents/gitea/runner.yaml" -RunnerPath "C:/Users/Admin/Documents/gitea/act_runner.exe" -ServerUrl "https://git.ldlda.com/" -Token "<reg token>" -Labels "self-hosted,windows"
param(
[string]$RunnerPath = "$HOME/Documents/gitea/act_runner.exe",
[string]$Config = "$HOME/Documents/gitea/.runner"
# Config is a FILE path (e.g., runner.yaml). Parent folder will be created if missing.
[string]$Config = "$HOME/Documents/gitea/config.yaml",
[string]$ServerUrl,
[string]$Token,
[string]$Labels = "windows:host,self-hosted",
# Opt-in to non-interactive configure; by default we print the command for you to run manually.
[switch]$ForceConfigure,
# When -Attach, run in the foreground to see logs (good for first-time troubleshooting)
[switch]$Attach
)
$ErrorActionPreference = 'Stop'
@@ -18,10 +26,33 @@ if ($running) {
}
# Ensure config exists
if (-not (Test-Path $Config)) {
Write-Host "Config not found. Initializing..."
& $RunnerPath configure --no-interactive --config $Config
$configFile = $Config
$configDir = Split-Path -Parent $configFile
Set-Location $configDir
if (-not (Test-Path $configDir)) { New-Item -ItemType Directory -Force -Path $configDir | Out-Null }
if (-not (Test-Path $configFile)) {
if (-not $ServerUrl -or -not $Token) {
Write-Host "Config not found at $configFile. Provide -ServerUrl and -Token for non-interactive setup, or run register manually:"
Write-Host "`t$RunnerPath register --config $configFile"
exit 2
}
if ($ForceConfigure) {
Write-Host "Config not found. Initializing non-interactively (ForceConfigure)..."
& $RunnerPath register --no-interactive --config $configFile --instance $ServerUrl --token $Token --labels $Labels
}
else {
Write-Host "Config not found. Run this manually once (note labels embed host executor on Windows):"
Write-Host "`t$RunnerPath register --no-interactive --config `"$configFile`" --instance `"$ServerUrl`" --token `"$Token`" --labels `"$Labels`""
exit 2
}
}
Start-Process -FilePath $RunnerPath -ArgumentList @("daemon", "--config", $Config) -WindowStyle Hidden
Write-Host "act_runner started."
if ($Attach) {
Write-Host "Starting act_runner (attached)... Ctrl+C to stop"
& $RunnerPath daemon --config $configFile
}
else {
Start-Process -FilePath $RunnerPath -ArgumentList @("daemon", "--config", $configFile) -WindowStyle Hidden
Write-Host "act_runner started."
}