summaryrefslogtreecommitdiff
path: root/scripts/build_tx.ps1
diff options
context:
space:
mode:
authorFrédéric Desbiens <[email protected]>2026-06-08 10:01:32 +0200
committerGitHub <[email protected]>2026-06-08 10:01:32 +0200
commit87ab09cce305eb9cd4aacac4e8c62af72f665bff (patch)
treedd062ebbea5235d1921c64b396bf7e4ce79e9e15 /scripts/build_tx.ps1
parent9ab0cf9683f832cdb48e2099533a5b06a3afcd64 (diff)
parent730b61874bc5cf40768987605ae5187fde0fa1e2 (diff)
Merge pull request #544 from eclipse-threadx/devv6.5.1.202602_rel
Merging changes for the v.6.5.1.202602 release
Diffstat (limited to 'scripts/build_tx.ps1')
-rw-r--r--scripts/build_tx.ps158
1 files changed, 58 insertions, 0 deletions
diff --git a/scripts/build_tx.ps1 b/scripts/build_tx.ps1
new file mode 100644
index 00000000..eeaa2222
--- /dev/null
+++ b/scripts/build_tx.ps1
@@ -0,0 +1,58 @@
+[CmdletBinding()]
+param(
+ [ValidateSet('win64', 'win32')]
+ [string]$Arch = 'win64',
+
+ [AllowNull()]
+ [object]$Configuration = 'all',
+
+ [int]$Parallel = [Math]::Max(1, [Environment]::ProcessorCount),
+
+ [int]$BuildTimeoutSeconds = 60,
+
+ [string]$BuildDir,
+
+ [switch]$Clean
+)
+
+$ErrorActionPreference = 'Stop'
+. (Join-Path $PSScriptRoot 'tx_windows_common.ps1')
+
+$repoRoot = Split-Path -Parent $PSScriptRoot
+$settings = Get-PortSettings -SelectedArch $Arch
+
+if (-not $BuildDir) {
+ $BuildDir = Join-Path $repoRoot "build\tests\$Arch"
+}
+
+$selectedConfigurations = Resolve-RegressionConfigurations -RequestedConfigurations $Configuration
+Write-Host "Selected configurations: $($selectedConfigurations -join ', ')"
+
+Enter-VisualStudioDevShell -VsArch $settings.VsArch
+
+foreach ($currentConfiguration in $selectedConfigurations) {
+ $currentBuildDirName = Get-RegressionBuildDirectoryName -ConfigurationName $currentConfiguration
+ $currentBuildDir = Join-Path $BuildDir $currentBuildDirName
+
+ if ($Clean) {
+ Remove-BuildDirectory -Path $currentBuildDir -RepoRoot $repoRoot
+ }
+
+ Remove-NinjaLock -Path $currentBuildDir
+
+ Write-Host "Configuring $Arch / $currentConfiguration"
+ Invoke-NativeCommand -FilePath 'cmake' -Arguments @(
+ '-S', (Join-Path $repoRoot 'test\tx\cmake'),
+ '-B', $currentBuildDir,
+ '-G', 'Ninja',
+ '-DCMAKE_C_COMPILER_FORCED=TRUE',
+ '-DCMAKE_C_COMPILER_WORKS=TRUE',
+ '-DCMAKE_C_ABI_COMPILED=TRUE',
+ "-DCMAKE_BUILD_TYPE=$currentConfiguration",
+ "-DTHREADX_ARCH=$($settings.ThreadXArch)",
+ "-DTHREADX_TOOLCHAIN=$($settings.ThreadXToolchain)"
+ )
+
+ Write-Host "Building $Arch / $currentConfiguration"
+ Invoke-CMakeBuild -BuildDir $currentBuildDir -Parallel $Parallel -TimeoutSeconds $BuildTimeoutSeconds
+}