恢复原来的构建逻辑
All checks were successful
Release Build / build-windows-x64 (push) Successful in 2m55s
Release Build / build-linux-x64 (push) Successful in 4m41s

This commit is contained in:
2026-01-19 17:33:52 +08:00
parent def69e031f
commit 21641f888e

View File

@@ -5,7 +5,7 @@ on:
workflow_dispatch: workflow_dispatch:
inputs: inputs:
version: version:
description: "版本号 (例如: v1.0.0, v1.1.0-alpha)" description: "版本号 (例如: v1.0.0)"
required: true required: true
default: "dev-build" default: "dev-build"
@@ -39,31 +39,6 @@ jobs:
echo "构建版本: $VERSION" echo "构建版本: $VERSION"
echo "VERSION=$VERSION" >> $GITHUB_ENV echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: 获取提交信息
run: |
# 获取最新提交信息,如果是标签则获取标签指向的提交
if git describe --tags --exact-match >/dev/null 2>&1; then
# 标签发布:获取标签关联的提交信息
COMMIT_HASH=$(git rev-list -n 1 $VERSION)
COMMIT_MSG=$(git log -1 --pretty=format:"%s" $COMMIT_HASH)
COMMIT_BODY=$(git log -1 --pretty=format:"%b" $COMMIT_HASH)
else
# 手动触发或非标签提交:获取最新提交信息
COMMIT_MSG=$(git log -1 --pretty=format:"%s")
COMMIT_BODY=$(git log -1 --pretty=format:"%b")
fi
# 组合完整的提交信息
if [ -n "$COMMIT_BODY" ]; then
RELEASE_BODY="${COMMIT_MSG}%0A%0A${COMMIT_BODY}"
else
RELEASE_BODY="${COMMIT_MSG}"
fi
# 保存到环境变量
echo "RELEASE_BODY=${RELEASE_BODY}" >> $GITHUB_ENV
echo "提交信息已保存"
- name: 构建项目 (Linux) - name: 构建项目 (Linux)
run: | run: |
echo "开始构建Linux版本..." echo "开始构建Linux版本..."
@@ -71,13 +46,19 @@ jobs:
xmake build -j$(nproc) xmake build -j$(nproc)
echo "Linux构建成功。" echo "Linux构建成功。"
# 🔧 新增构建Linux平台安装器
- name: 构建Linux安装器 - name: 构建Linux安装器
run: | run: |
echo "开始构建Linux安装器..." echo "开始构建Linux安装器..."
cd Installer/ConsoleInstaller cd Installer/ConsoleInstaller
python3 -m venv venv python3 -m venv venv
. venv/bin/activate . venv/bin/activate
pip config set global.index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple pip config set global.index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
# 安装依赖并构建
pip install --upgrade pip pip install --upgrade pip
pip install -r requirements.txt pip install -r requirements.txt
python3 -m PyInstaller -F -n FigSetup-Linux --distpath ./dist/linux main.py python3 -m PyInstaller -F -n FigSetup-Linux --distpath ./dist/linux main.py
@@ -102,26 +83,13 @@ jobs:
GITEA_TOKEN: ${{ secrets.CI_TOKEN }} GITEA_TOKEN: ${{ secrets.CI_TOKEN }}
run: | run: |
VERSION="${{ env.VERSION }}" VERSION="${{ env.VERSION }}"
RELEASE_BODY="${{ env.RELEASE_BODY }}"
API="https://git.fig-lang.cn/api/v1/repos/${{ github.repository }}" API="https://git.fig-lang.cn/api/v1/repos/${{ github.repository }}"
# 修复使用兼容性最好的case语句判断预发布版本
case "$VERSION" in
*-alpha* | *-beta* | *-dev* | *-rc* | dev-build)
PRERELEASE=true
echo "检测到预发布版本: $VERSION"
;;
*)
PRERELEASE=false
echo "检测到稳定版本: $VERSION"
;;
esac
echo "正在为Linux版本创建/更新发布 $VERSION ..." echo "正在为Linux版本创建/更新发布 $VERSION ..."
RESPONSE=$(curl -sS -X POST -H "Authorization: token $GITEA_TOKEN" \ RESPONSE=$(curl -sS -X POST -H "Authorization: token $GITEA_TOKEN" \
-H "Content-Type: application/json" \ -H "Content-Type: application/json" \
-d "{\"tag_name\":\"$VERSION\",\"name\":\"Fig $VERSION\",\"body\":\"$RELEASE_BODY\",\"draft\":false,\"prerelease\":$PRERELEASE}" \ -d "{\"tag_name\":\"$VERSION\",\"name\":\"Fig $VERSION\",\"draft\":false,\"prerelease\":false}" \
"$API/releases" 2>/dev/null || echo '{"id":0}') "$API/releases" 2>/dev/null || echo '{"id":0}')
RELEASE_ID=$(echo "$RESPONSE" | grep -o '"id":[0-9]*' | head -1 | cut -d':' -f2) RELEASE_ID=$(echo "$RESPONSE" | grep -o '"id":[0-9]*' | head -1 | cut -d':' -f2)
@@ -150,7 +118,7 @@ jobs:
--data-binary @Fig-$VERSION-linux-x86_64.sha256 \ --data-binary @Fig-$VERSION-linux-x86_64.sha256 \
"$API/releases/$RELEASE_ID/assets?name=Fig-$VERSION-linux-x86_64.sha256" "$API/releases/$RELEASE_ID/assets?name=Fig-$VERSION-linux-x86_64.sha256"
# 上传Linux安装器 # 🔧 新增:上传Linux安装器
if [ -f "Installer/ConsoleInstaller/dist/linux/FigSetup-Linux" ]; then if [ -f "Installer/ConsoleInstaller/dist/linux/FigSetup-Linux" ]; then
echo "正在上传Linux安装器..." echo "正在上传Linux安装器..."
curl -sS -X POST -H "Authorization: token $GITEA_TOKEN" \ curl -sS -X POST -H "Authorization: token $GITEA_TOKEN" \
@@ -168,10 +136,12 @@ jobs:
- name: 验证Windows工具链 - name: 验证Windows工具链
run: | run: |
Set-ExecutionPolicy Bypass -Scope Process -Force Set-ExecutionPolicy Bypass -Scope Process -Force
# 检查 xmake
if (Get-Command xmake -ErrorAction SilentlyContinue) { if (Get-Command xmake -ErrorAction SilentlyContinue) {
Write-Host '✅ xmake 已安装' Write-Host '✅ xmake 已安装'
xmake --version xmake --version
} else { Write-Host '警告: xmake 未找到' } } else { Write-Host '警告: xmake 未找到' }
# 检查 clang++
if (Get-Command clang++ -ErrorAction SilentlyContinue) { if (Get-Command clang++ -ErrorAction SilentlyContinue) {
Write-Host '✅ clang++ 已安装' Write-Host '✅ clang++ 已安装'
clang++ --version clang++ --version
@@ -183,39 +153,18 @@ jobs:
git clone https://git.fig-lang.cn/$env:GITHUB_REPOSITORY . git clone https://git.fig-lang.cn/$env:GITHUB_REPOSITORY .
git checkout $env:GITHUB_REF git checkout $env:GITHUB_REF
- name: 设置版本和提交信息 (Windows) - name: 设置版本
run: | run: |
[Console]::OutputEncoding = [System.Text.Encoding]::UTF8 [Console]::OutputEncoding = [System.Text.Encoding]::UTF8
# 最简版本逻辑
# 手动触发 -> 使用输入框的文本默认是dev-build
# 标签推送 -> 使用标签名
if ($env:GITHUB_EVENT_NAME -eq 'workflow_dispatch') { if ($env:GITHUB_EVENT_NAME -eq 'workflow_dispatch') {
# 手动触发:使用输入框的值 $VERSION = $env:INPUT_VERSION
$VERSION = '${{ inputs.version }}' if (-not $VERSION) { $VERSION = $env:VERSION_INPUT }
if (-not $VERSION) { $VERSION = "dev-build" }
} else { } else {
# 标签推送:使用标签名 $VERSION = $env:GITHUB_REF_NAME
$VERSION = '${{ github.ref_name }}'
} }
Write-Host "构建版本: $VERSION" Write-Host "构建版本: $VERSION"
# 获取提交信息
$COMMIT_MSG = git log -1 --pretty=format:"%s" 2>$null
$COMMIT_BODY = git log -1 --pretty=format:"%b" 2>$null
$RELEASE_BODY = $COMMIT_MSG
if (-not [string]::IsNullOrWhiteSpace($COMMIT_BODY)) {
$RELEASE_BODY = "${COMMIT_MSG}`n`n${COMMIT_BODY}"
}
# 设置环境变量
$RELEASE_BODY_JSON = $RELEASE_BODY -replace "`r`n", "\n" -replace "`n", "\n"
"VERSION=$VERSION" | Out-File -FilePath $env:GITHUB_ENV -Append -Encoding utf8 "VERSION=$VERSION" | Out-File -FilePath $env:GITHUB_ENV -Append -Encoding utf8
"RELEASE_BODY=$RELEASE_BODY_JSON" | Out-File -FilePath $env:GITHUB_ENV -Append -Encoding utf8
Write-Host "版本和提交信息已设置"
- name: 构建项目 (Windows Native) - name: 构建项目 (Windows Native)
run: | run: |
@@ -223,6 +172,7 @@ jobs:
xmake build -j $env:NUMBER_OF_PROCESSORS xmake build -j $env:NUMBER_OF_PROCESSORS
Write-Host 'Windows构建成功。' Write-Host 'Windows构建成功。'
# 🔧 新增构建Windows平台安装器
- name: 构建Windows安装器 - name: 构建Windows安装器
run: | run: |
[Console]::OutputEncoding = [System.Text.Encoding]::UTF8 [Console]::OutputEncoding = [System.Text.Encoding]::UTF8
@@ -236,7 +186,14 @@ jobs:
run: | run: |
[Console]::OutputEncoding = [System.Text.Encoding]::UTF8 [Console]::OutputEncoding = [System.Text.Encoding]::UTF8
$VERSION = $env:VERSION # 🔧 修改:与发布步骤使用相同的版本号计算逻辑
if ($env:GITHUB_EVENT_NAME -eq 'workflow_dispatch') {
$VERSION = $env:INPUT_VERSION
if (-not $VERSION) { $VERSION = "dev-build" }
} else {
$VERSION = $env:GITHUB_REF_NAME
}
Write-Host "打包版本: $VERSION" Write-Host "打包版本: $VERSION"
$PACKAGE_NAME = "Fig-${VERSION}-windows-x86_64" $PACKAGE_NAME = "Fig-${VERSION}-windows-x86_64"
@@ -244,6 +201,7 @@ jobs:
New-Item -ItemType Directory -Force -Path $PACKAGE_NAME New-Item -ItemType Directory -Force -Path $PACKAGE_NAME
# 查找可执行文件
if (Test-Path 'build\windows\x86_64\release\Fig.exe') { if (Test-Path 'build\windows\x86_64\release\Fig.exe') {
Copy-Item 'build\windows\x86_64\release\Fig.exe' $PACKAGE_NAME\ Copy-Item 'build\windows\x86_64\release\Fig.exe' $PACKAGE_NAME\
} elseif (Test-Path 'build\windows\x86_64\release\Fig') { } elseif (Test-Path 'build\windows\x86_64\release\Fig') {
@@ -257,9 +215,11 @@ jobs:
Copy-Item -Recurse 'src\Module\Library' $PACKAGE_NAME\ Copy-Item -Recurse 'src\Module\Library' $PACKAGE_NAME\
} }
# 压缩文件
$ZIP_NAME = "$PACKAGE_NAME.zip" $ZIP_NAME = "$PACKAGE_NAME.zip"
Compress-Archive -Path $PACKAGE_NAME -DestinationPath $ZIP_NAME Compress-Archive -Path $PACKAGE_NAME -DestinationPath $ZIP_NAME
# 生成校验文件
$Hash = Get-FileHash $ZIP_NAME -Algorithm SHA256 $Hash = Get-FileHash $ZIP_NAME -Algorithm SHA256
"$($Hash.Hash) $ZIP_NAME" | Out-File "$PACKAGE_NAME.sha256" -Encoding UTF8 "$($Hash.Hash) $ZIP_NAME" | Out-File "$PACKAGE_NAME.sha256" -Encoding UTF8
@@ -271,137 +231,91 @@ jobs:
run: | run: |
[Console]::OutputEncoding = [System.Text.Encoding]::UTF8 [Console]::OutputEncoding = [System.Text.Encoding]::UTF8
Write-Host "=== 开始发布流程 ===" # 重新计算版本号(不使用 $env:VERSION
if ($env:GITHUB_EVENT_NAME -eq 'workflow_dispatch') {
# 1. 确定版本号 $VERSION = $env:INPUT_VERSION
$VERSION = $null if (-not $VERSION) { $VERSION = "dev-build" }
# 首先尝试获取当前HEAD指向的精确标签
$exactTag = git describe --tags --exact-match 2>$null
if ($exactTag) {
$VERSION = $exactTag.Trim()
Write-Host "方式一:通过精确标签获取版本: $VERSION"
}
# 如果失败尝试获取指向当前HEAD的所有标签
if (-not $VERSION) {
$tagsAtHead = git tag --points-at HEAD 2>$null
if ($tagsAtHead) {
$VERSION = ($tagsAtHead -split "`n")[0].Trim()
Write-Host "方式二通过HEAD关联标签获取版本: $VERSION"
}
}
# 如果仍然失败,说明是手动触发或无标签推送,使用 dev-build
if (-not $VERSION) {
$VERSION = "dev-build"
Write-Host "方式三:无标签,使用默认版本: $VERSION"
}
Write-Host "最终发布版本: $VERSION"
# 2. 根据版本后缀判断是否为预发布
if ($VERSION -match '-(alpha|beta|dev|rc)') {
$PRERELEASE = $true
Write-Host "版本类型:预发布版本"
} elseif ($VERSION -eq 'dev-build') {
$PRERELEASE = $true
Write-Host "版本类型:开发构建"
} else { } else {
$PRERELEASE = $false $VERSION = $env:GITHUB_REF_NAME
Write-Host "版本类型:稳定版本"
} }
# 3. 获取本次提交信息作为发布描述 Write-Host "正在上传Windows版本到发布: $VERSION"
$COMMIT_MSG = git log -1 --pretty=format:"%s" 2>$null
$COMMIT_BODY = git log -1 --pretty=format:"%b" 2>$null
$RELEASE_BODY = $COMMIT_MSG
if (-not [string]::IsNullOrWhiteSpace($COMMIT_BODY)) {
$RELEASE_BODY = "${COMMIT_MSG}`n`n${COMMIT_BODY}"
}
# 将正文中的换行符转换为JSON可识别的\n
$RELEASE_BODY_JSON = $RELEASE_BODY -replace "`r`n", "\n" -replace "`n", "\n"
Write-Host "发布描述: $RELEASE_BODY"
# 4. 设置API相关变量
$REPO = $env:GITHUB_REPOSITORY $REPO = $env:GITHUB_REPOSITORY
$API = "https://git.fig-lang.cn/api/v1/repos/$REPO" $API = "https://git.fig-lang.cn/api/v1/repos/$REPO"
$TOKEN = $env:GITEA_TOKEN $TOKEN = $env:GITEA_TOKEN
# 5. 检查必需的文件 # 🔧 新增:检查必需的文件是否存在
$ZIP_FILE = "Fig-$VERSION-windows-x86_64.zip" $ZIP_FILE = "Fig-$VERSION-windows-x86_64.zip"
$HASH_FILE = "Fig-$VERSION-windows-x86_64.sha256" $HASH_FILE = "Fig-$VERSION-windows-x86_64.sha256"
$INSTALLER_PATH = "Installer\ConsoleInstaller\dist\windows\FigSetup.exe" $INSTALLER_PATH = "Installer\ConsoleInstaller\dist\windows\FigSetup.exe"
if (-not (Test-Path $ZIP_FILE)) { if (-not (Test-Path $ZIP_FILE)) {
Write-Host "❌ 致命错误:找不到构建产物 $ZIP_FILE" Write-Host "❌ 错误:找不到ZIP文件 $ZIP_FILE"
Write-Host "当前目录文件列表:" Get-ChildItem *.zip
Get-ChildItem *.zip exit 1
exit 1
} }
Write-Host "正在为版本 [$VERSION] 创建/更新发布..." Write-Host "正在为Windows版本创建/更新发布 $VERSION ..."
# 6. 创建发布请求体 # 🔧 关键修改直接创建发布不先检查与Linux逻辑一致
$CREATE_BODY = @{ $CREATE_BODY = @{
tag_name = $VERSION tag_name = $VERSION
name = "Fig $VERSION" name = "Fig $VERSION"
body = $RELEASE_BODY_JSON draft = $false
draft = $false prerelease = $false
prerelease = $PRERELEASE } | ConvertTo-Json -Compress
} | ConvertTo-Json
Write-Host "发布请求体: $CREATE_BODY" Write-Host "创建发布请求体: $CREATE_BODY"
# 7. 创建或获取已有的发布 # 直接创建发布Gitea会自动处理重复创建
$RESPONSE = Invoke-RestMethod -Method Post -Uri "$API/releases" ` $RESPONSE = Invoke-RestMethod -Method Post -Uri "$API/releases" `
-Headers @{ -Headers @{
Authorization = "token $TOKEN" Authorization = "token $TOKEN"
'Content-Type' = 'application/json' 'Content-Type' = 'application/json'
} -Body $CREATE_BODY -ErrorAction SilentlyContinue } -Body $CREATE_BODY -ErrorAction SilentlyContinue
if (-not $RESPONSE -or -not $RESPONSE.id) { if (-not $RESPONSE -or -not $RESPONSE.id) {
Write-Host "创建新发布失败,尝试获取已有发布..." # 如果创建失败,尝试通过标签获取已有发布的ID
$RESPONSE = Invoke-RestMethod -Uri "$API/releases/tags/$VERSION" ` Write-Host "创建失败,尝试获取已有发布..."
-Headers @{Authorization = "token $TOKEN" } ` $RESPONSE = Invoke-RestMethod -Uri "$API/releases/tags/$VERSION" `
-ErrorAction SilentlyContinue -Headers @{Authorization = "token $TOKEN" } `
-ErrorAction SilentlyContinue
} }
if ($RESPONSE -and $RESPONSE.id) { if ($RESPONSE -and $RESPONSE.id) {
$RELEASE_ID = $RESPONSE.id $RELEASE_ID = $RESPONSE.id
Write-Host "✅ 成功获取发布 ID: $RELEASE_ID" Write-Host "✅ 使用发布 ID: $RELEASE_ID 进行上传"
} else { } else {
Write-Host "❌ 致命错误:无法创建或获取发布" Write-Host "❌ 错误:无法获取或创建发布 ID"
exit 1 exit 1
} }
# 8. 上传所有资产 # 上传资产
Write-Host "正在上传ZIP文件 [$ZIP_FILE]..." Write-Host "正在上传 ZIP 文件..."
$uploadResult1 = Invoke-RestMethod -Method Post -Uri "$API/releases/$RELEASE_ID/assets?name=$ZIP_FILE" ` Invoke-RestMethod -Method Post -Uri "$API/releases/$RELEASE_ID/assets?name=$ZIP_FILE" `
-Headers @{ -Headers @{
Authorization = "token $TOKEN" Authorization = "token $TOKEN"
'Content-Type' = 'application/octet-stream' 'Content-Type' = 'application/octet-stream'
} -InFile $ZIP_FILE -ErrorAction SilentlyContinue } -InFile $ZIP_FILE -ErrorAction SilentlyContinue
Write-Host "正在上传校验文件 [$HASH_FILE]..." Write-Host "正在上传校验文件..."
$uploadResult2 = Invoke-RestMethod -Method Post -Uri "$API/releases/$RELEASE_ID/assets?name=$HASH_FILE" ` Invoke-RestMethod -Method Post -Uri "$API/releases/$RELEASE_ID/assets?name=$HASH_FILE" `
-Headers @{ -Headers @{
Authorization = "token $TOKEN" Authorization = "token $TOKEN"
'Content-Type' = 'text/plain' 'Content-Type' = 'text/plain'
} -InFile $HASH_FILE -ErrorAction SilentlyContinue } -InFile $HASH_FILE -ErrorAction SilentlyContinue
# 上传Windows安装器
if (Test-Path $INSTALLER_PATH) { if (Test-Path $INSTALLER_PATH) {
Write-Host "正在上传Windows安装器 [FigSetup.exe]..." Write-Host "正在上传Windows安装器..."
$uploadResult3 = Invoke-RestMethod -Method Post -Uri "$API/releases/$RELEASE_ID/assets?name=FigSetup.exe" ` Invoke-RestMethod -Method Post -Uri "$API/releases/$RELEASE_ID/assets?name=FigSetup.exe" `
-Headers @{ -Headers @{
Authorization = "token $TOKEN" Authorization = "token $TOKEN"
'Content-Type' = 'application/octet-stream' 'Content-Type' = 'application/octet-stream'
} -InFile $INSTALLER_PATH -ErrorAction SilentlyContinue } -InFile $INSTALLER_PATH -ErrorAction SilentlyContinue
} else { } else {
Write-Host "⚠️ 警告:未找到安装器文件,跳过上传" Write-Host "⚠️ 警告:未找到安装器文件 $INSTALLER_PATH"
} }
Write-Host "✅ Windows版本 [$VERSION] 发布完成!" Write-Host "✅ Windows版本发布完成"