fluxa-desktop/.github/workflows/warm-windows-angle-cache.yml
KhooLy a0b9b5d14d
Some checks failed
Warm Windows ANGLE Cache / warm-angle-cache (push) Has been cancelled
chore: bump to Rust edition 2024, update GitHub Actions to latest majors
2026-07-28 15:27:42 +03:00

34 lines
765 B
YAML

name: Warm Windows ANGLE Cache
on:
push:
branches:
- master
paths:
- ".github/workflows/build.yml"
- ".github/workflows/warm-windows-angle-cache.yml"
schedule:
- cron: "0 6 */3 * *"
workflow_dispatch: {}
permissions:
contents: read
jobs:
warm-angle-cache:
runs-on: windows-latest
timeout-minutes: 45
steps:
- name: Restore ANGLE cache
id: angle-cache
uses: actions/cache@v6
with:
path: |
C:\vcpkg\installed
C:\vcpkg\packages
key: vcpkg-angle-x64-windows-v1
- name: Build ANGLE
if: steps.angle-cache.outputs.cache-hit != 'true'
shell: bash
run: '"$VCPKG_INSTALLATION_ROOT/vcpkg" install angle:x64-windows'