FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
setup-java/.github/workflows/e2e-cache-dependency-path.yml at main · Keyfactor/setup-java · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
Keyfactor
/
setup-java
Public
forked from
actions/setup-java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
setup-java
/
.github
/
workflows
/
e2e-cache-dependency-path.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
93 lines (90 loc) · 2.65 KB
Breadcrumbs
setup-java
/
.github
/
workflows
/
e2e-cache-dependency-path.yml
Copy path
File metadata and controls
93 lines (90 loc) · 2.65 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name
:
Validate cache with cache-dependency-path option
on
:
push
:
branches
:
-
main
-
releases/*
paths-ignore
:
-
'
**.md
'
pull_request
:
paths-ignore
:
-
'
**.md
'
defaults
:
run
:
shell
:
bash
jobs
:
gradle1-save
:
runs-on
:
${{ matrix.os }}
strategy
:
fail-fast
:
false
matrix
:
os
:
[macos-latest, windows-latest, ubuntu-latest]
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v4
-
name
:
Run setup-java with the cache for gradle
uses
:
./
id
:
setup-java
with
:
distribution
:
'
adopt
'
java-version
:
'
11
'
cache
:
gradle
cache-dependency-path
:
__tests__/cache/gradle1/*.gradle*
-
name
:
Create files to cache
#
Need to avoid using Gradle daemon to stabilize the save process on Windows
#
https://github.com/actions/cache/issues/454#issuecomment-840493935
run
:
|
gradle downloadDependencies --no-daemon -p __tests__/cache/gradle1
if [ ! -d ~/.gradle/caches ]; then
echo "::error::The ~/.gradle/caches directory does not exist unexpectedly"
exit 1
fi
gradle1-restore
:
runs-on
:
${{ matrix.os }}
strategy
:
fail-fast
:
false
matrix
:
os
:
[macos-latest, windows-latest, ubuntu-latest]
needs
:
gradle1-save
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v4
-
name
:
Run setup-java with the cache for gradle
uses
:
./
id
:
setup-java
with
:
distribution
:
'
adopt
'
java-version
:
'
11
'
cache
:
gradle
cache-dependency-path
:
__tests__/cache/gradle1/*.gradle*
-
name
:
Confirm that ~/.gradle/caches directory has been made
run
:
|
if [ ! -d ~/.gradle/caches ]; then
echo "::error::The ~/.gradle/caches directory does not exist unexpectedly"
exit 1
fi
ls ~/.gradle/caches/
gradle2-restore
:
runs-on
:
${{ matrix.os }}
strategy
:
fail-fast
:
false
matrix
:
os
:
[macos-latest, windows-latest, ubuntu-latest]
needs
:
gradle1-save
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v4
-
name
:
Run setup-java with the cache for gradle
uses
:
./
id
:
setup-java
with
:
distribution
:
'
adopt
'
java-version
:
'
11
'
cache
:
gradle
cache-dependency-path
:
__tests__/cache/gradle2/*.gradle*
-
name
:
Confirm that ~/.gradle/caches directory has not been made
run
:
|
if [ -d ~/.gradle/caches ]; then
echo "::error::The ~/.gradle/caches directory exists unexpectedly"
exit 1
fi
Back
|
FazBrowse Home
|
New Git URL