[llvm-branch-commits] [llvm] release/23.x: workflows/release-binaries: Install Wix on Windows ARM64 (#217707) (PR #218221)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Sun Aug 23 01:55:16 PDT 2026
llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-github-workflow
Author: llvmbot
<details>
<summary>Changes</summary>
Backport f75f48e3ce41227c5a0ae5d2c6d6ea90100b9bc4
Requested by: @<!-- -->tstellar
---
Full diff: https://github.com/llvm/llvm-project/pull/218221.diff
1 Files Affected:
- (modified) .github/workflows/release-binaries.yml (+8)
``````````diff
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 8b02e277e88ed..b396b98f5fba7 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -283,6 +283,14 @@ jobs:
release_dir=`find "$BUILD_PREFIX/build" -iname 'stage2-bins'`
mv "$release_dir/$RELEASE_BINARY_FILENAME" .
+ # Wix is not installed by default on Windows ARM64
+ - name: Install Wix (Windows ARM64)
+ if: runner.os == 'Windows' && runner.arch == 'ARM64'
+ run: |
+ choco install wixtoolset --version 3.14.1.20250415
+ # Add wix install directory to PATH.
+ Split-Path (Get-ChildItem -Path "C:\" -Filter candle.exe -Recurse -ErrorAction SilentlyContinue | Select-Object -First 1).FullName
+
- name: Build Windows
id: build-windows
if: runner.os == 'Windows'
``````````
</details>
https://github.com/llvm/llvm-project/pull/218221
More information about the llvm-branch-commits
mailing list