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 _______________________________________________ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
