Readd x86 builds by default

This commit is contained in:
Matt Nadareski
2024-02-21 00:52:40 -05:00
parent 14f4128d4a
commit e35f1fc2ec
3 changed files with 5 additions and 4 deletions

View File

@@ -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)

View File

@@ -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 ]

View File

@@ -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)