From 4f71fa09cf40094f05d927e6053ae898c8db7bae Mon Sep 17 00:00:00 2001 From: PuqiAR Date: Sat, 3 Jan 2026 22:07:23 +0800 Subject: [PATCH] =?UTF-8?q?[CI]=20=E5=8E=BB=E6=8E=89windows=E5=AE=89?= =?UTF-8?q?=E8=A3=85xmake?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 6637b17..f306e2c 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -153,17 +153,6 @@ jobs: echo "VERSION=$VERSION" | Out-File -FilePath $env:GITHUB_ENV -Append echo "Windows构建版本: $VERSION" - - name: 安装 xmake (Windows,可选) - run: | - # 如果工具链验证步骤发现没有 xmake,再执行安装 - if (-not (Get-Command xmake -ErrorAction SilentlyContinue)) { - echo "正在安装 xmake..." - curl -fsSL https://xmake.io/shget.text -o xmake.ps1 - powershell -ExecutionPolicy Bypass -File xmake.ps1 - } else { - echo "xmake 已安装,跳过安装步骤。" - } - - name: 构建项目 (Windows Native) run: | xmake f -p windows -a x86_64 -m release -y