File tree Expand file tree Collapse file tree 18 files changed +342
-156
lines changed Expand file tree Collapse file tree 18 files changed +342
-156
lines changed Original file line number Diff line number Diff line change
1
+ name : Test Setup Java adoptopenjdk PR#767
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ test-setup-java :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - name : Checkout code
10
+ uses : actions/checkout@v4
11
+
12
+ - name : Set up .tool-versions with ASDF format
13
+ run : |
14
+ echo "java adoptopenjdk-11.0.15+10" > .tool-versions
15
+ cat .tool-versions
16
+
17
+ - name : Test setup-java from PR branch
18
+ uses : actions/setup-java@refs/pull/767/merge
19
+ with :
20
+ distribution : ' temurin'
21
+ java-version : ' 17'
22
+
23
+ - name : Verify Java installation
24
+ run : java -version
Original file line number Diff line number Diff line change
1
+ name : Test Setup Java corretto PR#767
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ test-setup-java :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - name : Checkout code
10
+ uses : actions/checkout@v4
11
+
12
+ - name : Set up .tool-versions with ASDF format
13
+ run : |
14
+ echo "java corretto-8.322.06.4" > .tool-versions
15
+ cat .tool-versions
16
+
17
+ - name : Test setup-java from PR branch
18
+ uses : actions/setup-java@refs/pull/767/merge
19
+ with :
20
+ distribution : ' temurin'
21
+ java-version : ' 17'
22
+
23
+ - name : Verify Java installation
24
+ run : java -version
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Test Setup Java graalvm PR#767
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ test-setup-java :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - name : Checkout code
10
+ uses : actions/checkout@v4
11
+
12
+ - name : Set up .tool-versions with ASDF format
13
+ run : |
14
+ echo "java graalvm-community-17.0.7" > .tool-versions
15
+ cat .tool-versions
16
+
17
+ - name : Test setup-java from PR branch
18
+ uses : actions/setup-java@refs/pull/767/merge
19
+ with :
20
+ distribution : ' temurin'
21
+ java-version : ' 17'
22
+
23
+ - name : Verify Java installation
24
+ run : java -version
Original file line number Diff line number Diff line change
1
+ name : Test Setup Java jetbrains PR#767
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ test-setup-java :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - name : Checkout code
10
+ uses : actions/checkout@v4
11
+
12
+ - name : Set up .tool-versions with ASDF format
13
+ run : |
14
+ echo "java jetbrains-17.0.4.1b646.8" > .tool-versions
15
+ cat .tool-versions
16
+
17
+ - name : Test setup-java from PR branch
18
+ uses : actions/setup-java@refs/pull/767/merge
19
+ with :
20
+ distribution : ' temurin'
21
+ java-version : ' 17'
22
+
23
+ - name : Verify Java installation
24
+ run : java -version
Original file line number Diff line number Diff line change
1
+ name : Test Setup Java kona PR#767
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ test-setup-java :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - name : Checkout code
10
+ uses : actions/checkout@v4
11
+
12
+ - name : Set up .tool-versions with ASDF format
13
+ run : |
14
+ echo "java kona-8.0.12.b1" > .tool-versions
15
+ cat .tool-versions
16
+
17
+ - name : Test setup-java from PR branch
18
+ uses : actions/setup-java@refs/pull/767/merge
19
+ with :
20
+ distribution : ' temurin'
21
+ java-version : ' 17'
22
+
23
+ - name : Verify Java installation
24
+ run : java -version
Original file line number Diff line number Diff line change
1
+ name : Test Setup Java liberica PR#767
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ test-setup-java :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - name : Checkout code
10
+ uses : actions/checkout@v4
11
+
12
+ - name : Set up .tool-versions with ASDF format
13
+ run : |
14
+ echo "java liberica-16+36" > .tool-versions
15
+ cat .tool-versions
16
+
17
+ - name : Test setup-java from PR branch
18
+ uses : actions/setup-java@refs/pull/767/merge
19
+ with :
20
+ distribution : ' temurin'
21
+ java-version : ' 17'
22
+
23
+ - name : Verify Java installation
24
+ run : java -version
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Test Setup Java mandrel PR#767
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ test-setup-java :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - name : Checkout code
10
+ uses : actions/checkout@v4
11
+
12
+ - name : Set up .tool-versions with ASDF format
13
+ run : |
14
+ echo "java mandrel-23.1.3.1-Final+java21" > .tool-versions
15
+ cat .tool-versions
16
+
17
+ - name : Test setup-java from PR branch
18
+ uses : actions/setup-java@refs/pull/767/merge
19
+ with :
20
+ distribution : ' temurin'
21
+ java-version : ' 17'
22
+
23
+ - name : Verify Java installation
24
+ run : java -version
Original file line number Diff line number Diff line change
1
+ name : Test Setup Java microsoft PR#767
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ test-setup-java :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - name : Checkout code
10
+ uses : actions/checkout@v4
11
+
12
+ - name : Set up .tool-versions with ASDF format
13
+ run : |
14
+ echo "java microsoft-11.0.15" > .tool-versions
15
+ cat .tool-versions
16
+
17
+ - name : Test setup-java from PR branch
18
+ uses : actions/setup-java@refs/pull/767/merge
19
+ with :
20
+ distribution : ' temurin'
21
+ java-version : ' 17'
22
+
23
+ - name : Verify Java installation
24
+ run : java -version
You can’t perform that action at this time.
0 commit comments