Skip to content

Commit

Permalink
Add Caches to Windows Runs
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisaruGuruge committed Jul 19, 2021
1 parent dd94587 commit 6cbf039
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/pull-request-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,15 @@ jobs:
run: |
git submodule update --init
- name: Cache Gradle packages
uses: actions/cache@v2
with:
path: |
$home\.gradle\caches
$home\.gradle\wrapper
key: 1.2.x-${{ runner.os }}-gradle-${{ github.sha }}
restore-keys: 1.2.x-${{ runner.os }}-gradle-

- name: Setup Node
uses: actions/setup-node@v1
with:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/pull-request-windows-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ jobs:
run: |
git submodule update --init
- name: Cache Gradle packages
uses: actions/cache@v2
with:
path: |
$home\.gradle\caches
$home\.gradle\wrapper
key: 1.2.x-${{ runner.os }}-gradle-${{ github.sha }}
restore-keys: 1.2.x-${{ runner.os }}-gradle-

- name: Setup Node
uses: actions/setup-node@v1
with:
Expand Down

0 comments on commit 6cbf039

Please sign in to comment.