You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(e2e): gate build-skip on BOTH binary + CEF cache hits
The CEF cache step's path was wrong (pointed at the platform-default
~/.cache/tauri-cef while cef-dll-sys actually writes to
~/Library/Caches/tauri-cef). I just fixed the path, but the *first*
run on the new path will be a cache miss. If the binary cache hits and
the CEF cache misses, the build step is skipped — leaving no libcef.so
on Linux / no libcef.dll on Windows, and the runner fails at launch.
Gate the build-skip condition on BOTH caches hitting. Bump the CEF
cache key to v2 since the path moved (any stale empty cache at the
old path would otherwise restore as a no-op and look like a hit). Mac
is unaffected — the .app bundle is self-contained with CEF Frameworks
embedded, so binary cache alone is sufficient there.
0 commit comments