26 lines
945 B
PowerShell
26 lines
945 B
PowerShell
# 本地打包 class-checker 并复制到 .gitea/workflows/
|
||
$ErrorActionPreference = "Stop"
|
||
$Root = Split-Path -Parent (Split-Path -Parent $MyInvocation.MyCommand.Path)
|
||
$CheckerDir = Join-Path $Root ".gitea\class-checker"
|
||
$WorkflowsDir = Join-Path $Root ".gitea\workflows"
|
||
$TargetJar = Join-Path $CheckerDir "target\class-checker.jar"
|
||
$OutputJar = Join-Path $WorkflowsDir "class-checker.jar"
|
||
|
||
Write-Host ">> 编译 class-checker..."
|
||
Push-Location $Root
|
||
& mvn -q -f .gitea/class-checker/pom.xml package -DskipTests
|
||
if ($LASTEXITCODE -ne 0) {
|
||
Pop-Location
|
||
Write-Error "Maven 编译失败,exit code: $LASTEXITCODE"
|
||
}
|
||
Pop-Location
|
||
|
||
if (-not (Test-Path $TargetJar)) {
|
||
Write-Error "编译失败,未找到 $TargetJar"
|
||
}
|
||
|
||
New-Item -ItemType Directory -Force -Path $WorkflowsDir | Out-Null
|
||
Copy-Item -Force $TargetJar $OutputJar
|
||
Write-Host ">> 已输出: $OutputJar"
|
||
Write-Host ">> 请 commit 并 push .gitea/workflows/class-checker.jar"
|