From 799be180bc9a029bd5ebdc1460cfa1ae6eba515d Mon Sep 17 00:00:00 2001 From: ospab Date: Thu, 14 May 2026 23:07:16 +0300 Subject: [PATCH] CI/CD: Focus local build.ps1 exclusively on Windows/Linux x64 for rapid daily developer iteration --- scripts/build.ps1 | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/scripts/build.ps1 b/scripts/build.ps1 index 6bfcd81..0c227cb 100644 --- a/scripts/build.ps1 +++ b/scripts/build.ps1 @@ -43,9 +43,7 @@ $ReleaseArchives = @() # PHASE 1: WINDOWS COMPILATION MATRIX (Native Host) # --------------------------------------------------------------------- $WindowsTargets = @( - @{ Target = "x86_64-pc-windows-msvc"; Arch = "x64"; BinaryName = "ostp.exe" }, - @{ Target = "i686-pc-windows-msvc"; Arch = "x86"; BinaryName = "ostp.exe" }, - @{ Target = "aarch64-pc-windows-msvc"; Arch = "arm64"; BinaryName = "ostp.exe" } + @{ Target = "x86_64-pc-windows-msvc"; Arch = "x64"; BinaryName = "ostp.exe" } ) Write-Output "=========================================================" @@ -112,11 +110,7 @@ if (Get-Command wsl -ErrorAction SilentlyContinue) { $WslBuildDir = & wsl wslpath -u $LinuxBuildUnix $LinuxTargets = @( - @{ Target = "x86_64-unknown-linux-musl"; Arch = "x64"; BinaryName = "ostp" }, - @{ Target = "i686-unknown-linux-musl"; Arch = "x86"; BinaryName = "ostp" }, - @{ Target = "aarch64-unknown-linux-musl"; Arch = "arm64"; BinaryName = "ostp" }, - @{ Target = "armv7-unknown-linux-musleabihf"; Arch = "armv7"; BinaryName = "ostp" }, - @{ Target = "x86_64-unknown-freebsd"; Arch = "x64"; BinaryName = "ostp" } + @{ Target = "x86_64-unknown-linux-musl"; Arch = "x64"; BinaryName = "ostp" } ) foreach ($item in $LinuxTargets) {