Skip to content

Commit

Permalink
Suggestions for R and ccache
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed Sep 13, 2022
1 parent 5e724c1 commit 5bd1967
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,11 @@ jobs:
uses: actions/cache@v2
with:
path: ${{ steps.ccache-info.outputs.cache-dir }}
key: cpp-ccache-windows-v2-${{ hashFiles('cpp/**') }}
restore-keys: cpp-ccache-windows-v2-
key: cpp-ccache-windows-${{ env.CACHE_VERSION }}-${{ hashFiles('cpp/**') }}
restore-keys: cpp-ccache-windows-${{ env.CACHE_VERSION }}-
env:
# We can invalidate the current cache by updating this.
CACHE_VERSION: "2022-09-13"
- name: Build
shell: cmd
run: |
Expand Down
3 changes: 3 additions & 0 deletions r/src/Makevars.ucrt
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@

CRT=-ucrt
include Makevars.win

# XXX for some reason, this variable doesn't seem propagated from Makevars.win
CXX_STD=CXX17

0 comments on commit 5bd1967

Please sign in to comment.