Cache dependencies on Github Action. (#5928)

This commit is contained in:
Jiaming Yuan
2020-07-23 14:00:19 +08:00
committed by GitHub
parent 4af857f95d
commit fbfbd525d8
2 changed files with 17 additions and 3 deletions

View File

@@ -25,6 +25,13 @@ jobs:
with:
java-version: 1.8
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('./jvm-packages/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Test JVM packages
run: |
cd jvm-packages
@@ -61,6 +68,13 @@ jobs:
with:
r-version: ${{ matrix.config.r }}
- name: Cache R packages
uses: actions/cache@v2
with:
path: ${{ env.R_LIBS_USER }}
key: ${{ runner.os }}-r-${{ matrix.config.r }}-1-${{ hashFiles('R-package/DESCRIPTION') }}
restore-keys: ${{ runner.os }}-r-${{ matrix.config.r }}-2-
- name: Install dependencies
shell: Rscript {0}
run: |