From bebd78fbbb57edab6454a2b82fe49c006a708d49 Mon Sep 17 00:00:00 2001 From: loverustfs <155562731+loverustfs@users.noreply.github.com> Date: Mon, 21 Jul 2025 16:58:29 +0800 Subject: [PATCH] Add GNU to build.yml (#275) * fix unzip error * fix url change error fix url change error * Simplify user experience and integrate console and endpoint Simplify user experience and integrate console and endpoint * Add gnu to build.yml --- .github/workflows/build.yml | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 22191880..1c4f95e8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -172,6 +172,14 @@ jobs: target: aarch64-unknown-linux-musl cross: true platform: linux + - os: ubuntu-latest + target: x86_64-unknown-linux-gnu + cross: false + platform: linux + - os: ubuntu-latest + target: aarch64-unknown-linux-gnu + cross: true + platform: linux # macOS builds - os: macos-latest target: aarch64-apple-darwin @@ -181,15 +189,15 @@ jobs: target: x86_64-apple-darwin cross: false platform: macos - # # Windows builds (temporarily disabled) - # - os: windows-latest - # target: x86_64-pc-windows-msvc - # cross: false - # platform: windows - # - os: windows-latest - # target: aarch64-pc-windows-msvc - # cross: true - # platform: windows + # Windows builds (temporarily disabled) + - os: windows-latest + target: x86_64-pc-windows-msvc + cross: false + platform: windows + - os: windows-latest + target: aarch64-pc-windows-msvc + cross: true + platform: windows steps: - name: Checkout repository uses: actions/checkout@v4