Browse Source

Github CI: Enable ccache for the MSVC build

pull/5517/head
Gleb Mazovetskiy 3 years ago
parent
commit
fef3717698
  1. 5
      .github/workflows/Windows_MSVC_x64.yml

5
.github/workflows/Windows_MSVC_x64.yml

@ -23,6 +23,11 @@ jobs:
- name: ccache
uses: hendrikmuhs/ccache-action@v1.2
- name: Add ccache to path
# This is where ccache-action places `ccache.exe`, see:
# https://github.com/hendrikmuhs/ccache-action/blob/657bab9aeb32eb6d913c2e6882efad4bb7536d94/src/restore.ts#L74-L75
run: Add-Content $env:GITHUB_PATH "$($env:USERPROFILE)\.cargo\bin"
- name: Install latest CMake
uses: lukka/get-cmake@latest

Loading…
Cancel
Save