mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
ci: cache webview installer (#4935)
https://github.com/firezone/firezone/actions/runs/9008970452/job/24752210427?pr=4928
This commit is contained in:
8
.github/actions/setup-tauri/action.yml
vendored
8
.github/actions/setup-tauri/action.yml
vendored
@@ -23,8 +23,14 @@ runs:
|
||||
if: ${{ runner.os == 'Linux' }}
|
||||
run: sudo apt-get install at-spi2-core xvfb
|
||||
shell: bash
|
||||
- name: Download WebView2 bootstrapper
|
||||
- uses: actions/cache@v4
|
||||
if: ${{ runner.os == 'Windows' }}
|
||||
id: cache-webview2-installer
|
||||
with:
|
||||
path: WebView2Installer.exe
|
||||
key: ${{ runner.os }}-${{ runner.arch }}-webview2-installer
|
||||
- name: Download WebView2 bootstrapper
|
||||
if: ${{ runner.os == 'Windows' && steps.cache-webview2-installer.outputs.cache-hit != 'true' }}
|
||||
# This is the "Evergreen" bootstrapper from Microsoft
|
||||
# <https://developer.microsoft.com/en-us/microsoft-edge/webview2/?form=MA13LH#download>
|
||||
# Unfortunately, this makes the test non-deterministic.
|
||||
|
||||
Reference in New Issue
Block a user