Skip to content

Commit 08e4e81

Browse files
KengoTODAdmitry-shibanovkonradpabjan
authored
Introduce the dependency caching for Maven and Gradle (#193)
* implement a core logic to cache dependnecies * integrate the cache logic to entry points * add a user doc about the dependency cache feature * reflect changes to the dist dir * add a prefix to the cache key https://github.com/actions/setup-java/pull/193/files#r669521434 * test: extract build.gradle to a file in __tests__ dir * run the restore e2e test on the specified OS * add an e2e test for maven * fix the dependency among workflows * stabilize the cache on the Windows in e2e test * add .gitignore files to __tests__/cache directories * try to run restore after the authentication * use the key in state to save caches in the post process * suggest users to run without daemon if fail to save Gradle cache on Windows * add missing description in the README.md * run clean-up tasks in serial * Add validation for post step (#3) * work on fixing cache post step * fix tests * Update src/cleanup-java.ts Co-authored-by: Konrad Pabjan <[email protected]> * Update src/cache.ts Co-authored-by: Konrad Pabjan <[email protected]> * style: put the name of input to the constants.ts * format: run `npm run build` to reflect changes to the dist dir * chore: update licensed files by `licensed cache` it still has three errors as follows: >* setup-java.npm.sax > filename: /Users/kengo/GitHub/setup-java/.licenses/npm/sax.dep.yml > - license needs review: other > >* setup-java.npm.tslib-1.14.1 > filename: /Users/kengo/GitHub/setup-java/.licenses/npm/tslib-1.14.1.dep.yml > - license needs review: 0bsd > >* setup-java.npm.tslib-2.3.0 > filename: /Users/kengo/GitHub/setup-java/.licenses/npm/tslib-2.3.0.dep.yml > - license needs review: 0bsd * fix: rerun ncc on macOS with node v12 * build: follow the suggestion at PR page #193 (comment) * fix: throw error in case of no package manager file found Co-authored-by: Dmitry Shibanov <[email protected]> Co-authored-by: Konrad Pabjan <[email protected]>
1 parent 4b1b3d4 commit 08e4e81

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+149975
-31588
lines changed

.github/workflows/e2e-cache.yml

+113
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
name: Validate cache
2+
on:
3+
push:
4+
branches:
5+
- main
6+
- releases/*
7+
paths-ignore:
8+
- '**.md'
9+
pull_request:
10+
paths-ignore:
11+
- '**.md'
12+
13+
defaults:
14+
run:
15+
shell: bash
16+
17+
jobs:
18+
gradle-save:
19+
runs-on: ${{ matrix.os }}
20+
strategy:
21+
fail-fast: false
22+
matrix:
23+
os: [macos-latest, windows-latest, ubuntu-latest]
24+
steps:
25+
- name: Checkout
26+
uses: actions/checkout@v2
27+
- name: Run setup-java with the cache for gradle
28+
uses: ./
29+
id: setup-java
30+
with:
31+
distribution: 'adopt'
32+
java-version: '11'
33+
cache: gradle
34+
- name: Create files to cache
35+
# Need to avoid using Gradle daemon to stabilize the save process on Windows
36+
# https://github.com/actions/cache/issues/454#issuecomment-840493935
37+
run: |
38+
gradle downloadDependencies --no-daemon -p __tests__/cache/gradle
39+
if [ ! -d ~/.gradle/caches ]; then
40+
echo "::error::The ~/.gradle/caches directory does not exist unexpectedly"
41+
exit 1
42+
fi
43+
gradle-restore:
44+
runs-on: ${{ matrix.os }}
45+
strategy:
46+
fail-fast: false
47+
matrix:
48+
os: [macos-latest, windows-latest, ubuntu-latest]
49+
needs: gradle-save
50+
steps:
51+
- name: Checkout
52+
uses: actions/checkout@v2
53+
- name: Run setup-java with the cache for gradle
54+
uses: ./
55+
id: setup-java
56+
with:
57+
distribution: 'adopt'
58+
java-version: '11'
59+
cache: gradle
60+
- name: Confirm that ~/.gradle/caches directory has been made
61+
run: |
62+
if [ ! -d ~/.gradle/caches ]; then
63+
echo "::error::The ~/.gradle/caches directory does not exist unexpectedly"
64+
exit 1
65+
fi
66+
ls ~/.gradle/caches/
67+
maven-save:
68+
runs-on: ${{ matrix.os }}
69+
strategy:
70+
fail-fast: false
71+
matrix:
72+
os: [macos-latest, windows-latest, ubuntu-latest]
73+
steps:
74+
- name: Checkout
75+
uses: actions/checkout@v2
76+
- name: Run setup-java with the cache for maven
77+
uses: ./
78+
id: setup-java
79+
with:
80+
distribution: 'adopt'
81+
java-version: '11'
82+
cache: maven
83+
- name: Create files to cache
84+
run: |
85+
mvn verify -f __tests__/cache/maven/pom.xml
86+
if [ ! -d ~/.m2/repository ]; then
87+
echo "::error::The ~/.m2/repository directory does not exist unexpectedly"
88+
exit 1
89+
fi
90+
maven-restore:
91+
runs-on: ${{ matrix.os }}
92+
strategy:
93+
fail-fast: false
94+
matrix:
95+
os: [macos-latest, windows-latest, ubuntu-latest]
96+
needs: maven-save
97+
steps:
98+
- name: Checkout
99+
uses: actions/checkout@v2
100+
- name: Run setup-java with the cache for maven
101+
uses: ./
102+
id: setup-java
103+
with:
104+
distribution: 'adopt'
105+
java-version: '11'
106+
cache: maven
107+
- name: Confirm that ~/.m2/repository directory has been made
108+
run: |
109+
if [ ! -d ~/.m2/repository ]; then
110+
echo "::error::The ~/.m2/repository directory does not exist unexpectedly"
111+
exit 1
112+
fi
113+
ls ~/.m2/repository

.licensed.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ sources:
33

44
allowed:
55
- apache-2.0
6+
- 0bsd
67
- bsd-2-clause
78
- bsd-3-clause
89
- isc

.licenses/npm/@actions/cache.dep.yml

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@actions/glob-0.1.2.dep.yml

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@actions/glob-0.2.0.dep.yml

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@azure/abort-controller.dep.yml

+32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@azure/core-asynciterator-polyfill.dep.yml

+32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@azure/core-auth.dep.yml

+33
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@azure/core-http.dep.yml

+33
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@azure/core-lro.dep.yml

+32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@azure/core-paging.dep.yml

+32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)