mirror of https://github.com/ospab/ostp.git
CI/CD: Expand Matrix to include Windows ARM64 and Linux 32-bit targets
This commit is contained in:
parent
abaf49237e
commit
f071e8309e
|
|
@ -44,7 +44,8 @@ $ReleaseArchives = @()
|
||||||
# ---------------------------------------------------------------------
|
# ---------------------------------------------------------------------
|
||||||
$WindowsTargets = @(
|
$WindowsTargets = @(
|
||||||
@{ Target = "x86_64-pc-windows-msvc"; Arch = "x64"; BinaryName = "ostp.exe" },
|
@{ Target = "x86_64-pc-windows-msvc"; Arch = "x64"; BinaryName = "ostp.exe" },
|
||||||
@{ Target = "i686-pc-windows-msvc"; Arch = "x86"; BinaryName = "ostp.exe" }
|
@{ Target = "i686-pc-windows-msvc"; Arch = "x86"; BinaryName = "ostp.exe" },
|
||||||
|
@{ Target = "aarch64-pc-windows-msvc"; Arch = "arm64"; BinaryName = "ostp.exe" }
|
||||||
)
|
)
|
||||||
|
|
||||||
Write-Output "========================================================="
|
Write-Output "========================================================="
|
||||||
|
|
@ -112,6 +113,7 @@ if (Get-Command wsl -ErrorAction SilentlyContinue) {
|
||||||
|
|
||||||
$LinuxTargets = @(
|
$LinuxTargets = @(
|
||||||
@{ Target = "x86_64-unknown-linux-musl"; Arch = "x64"; BinaryName = "ostp" },
|
@{ 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 = "aarch64-unknown-linux-musl"; Arch = "arm64"; BinaryName = "ostp" },
|
||||||
@{ Target = "armv7-unknown-linux-musleabihf"; Arch = "armv7"; BinaryName = "ostp" }
|
@{ Target = "armv7-unknown-linux-musleabihf"; Arch = "armv7"; BinaryName = "ostp" }
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue