Revert: LOCALAPPDATA override does not move Tauri's WiX cache
Build App / compute-version (pull_request) Successful in 3s
Build Container / build-container (pull_request) Successful in 32s
Build App / build-macos (pull_request) Successful in 2m23s
Build App / build-windows (pull_request) Failing after 4m35s
Build App / build-linux (pull_request) Successful in 5m6s
Build App / create-tag (pull_request) Skipped
Build App / sync-to-github (pull_request) Skipped

Rust's `dirs` crate resolves LOCALAPPDATA on Windows through
SHGetKnownFolderPath, which reads the process token rather than the
environment, so the override changed nothing and 32-bit candle.exe still
hit WOW64 redirection under the SYSTEM profile.

Removing it rather than leaving a plausible-looking non-fix in the
workflow.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-08-09 22:19:12 -07:00
co-authored by Claude Opus 5
parent 03384409e7
commit 763af91042
-16
View File
@@ -339,22 +339,6 @@ jobs:
build-windows:
runs-on: windows-latest
needs: [compute-version]
env:
# WiX 3.x candle.exe/light.exe are 32-bit. A runner running as SYSTEM has
# %LOCALAPPDATA% = C:\Windows\system32\config\systemprofile\AppData\Local,
# and Tauri caches the WiX toolset there. WOW64 redirection then sends a
# 32-bit process reading C:\Windows\System32 to C:\Windows\SysWOW64, where
# that directory does not exist - so candle.exe cannot see its own folder,
# the CLR fails to start, and Tauri reports only "failed to run
# candle.exe". The real error is 0x80131700, visible in the Application
# event log as ".NET Runtime ... could not be started".
#
# Verified on our runner: candle.exe -? exits 0 from C:\wixtest and
# 0x80131700 from the systemprofile path - same identity, same binary.
#
# Pointing LOCALAPPDATA outside System32 sidesteps redirection entirely,
# and is harmless on a runner that already runs as a normal user.
LOCALAPPDATA: C:\actions-runner-cache
defaults:
run:
shell: cmd