From e35f1fc2ec1b5037df801ae89d677490c13c709d Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 21 Feb 2024 00:52:40 -0500 Subject: [PATCH] Readd x86 builds by default --- CHANGELIST.md | 1 + publish-nix.sh | 4 ++-- publish-win.ps1 | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELIST.md b/CHANGELIST.md index af462b68..b01df3c6 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -3,6 +3,7 @@ - Remove debugging lines from build script - Port build script fixes from BOS - Fix double git hash version (feat. Deterous) +- Readd x86 builds by default ### 3.1.1 (2024-02-20) diff --git a/publish-nix.sh b/publish-nix.sh index 812f09a8..3e35fbe8 100755 --- a/publish-nix.sh +++ b/publish-nix.sh @@ -45,9 +45,9 @@ COMMIT=`git log --pretty=%H -1` # Create the build matrix arrays UI_FRAMEWORKS=("net8.0-windows") -UI_RUNTIMES=("win-x64") +UI_RUNTIMES=("win-x86" "win-x64") CHECK_FRAMEWORKS=("net8.0") -CHECK_RUNTIMES=("win-x64" "linux-x64" "osx-x64") +CHECK_RUNTIMES=("win-x86" "win-x64" "linux-x64" "osx-x64") # Use expanded lists, if requested if [ $USE_ALL = true ] diff --git a/publish-win.ps1 b/publish-win.ps1 index 49075975..453d46bc 100644 --- a/publish-win.ps1 +++ b/publish-win.ps1 @@ -35,9 +35,9 @@ $COMMIT = git log --pretty=format:"%H" -1 # Create the build matrix arrays $UI_FRAMEWORKS = @('net8.0-windows') -$UI_RUNTIMES = @('win-x64') +$UI_RUNTIMES = @('win-x86', 'win-x64') $CHECK_FRAMEWORKS = @('net8.0') -$CHECK_RUNTIMES = @('win-x64', 'linux-x64', 'osx-x64') +$CHECK_RUNTIMES = @('win-x86', 'win-x64', 'linux-x64', 'osx-x64') # Use expanded lists, if requested if ($USE_ALL.IsPresent)