File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ inputs:
11
11
runs :
12
12
using : composite
13
13
steps :
14
- - name : " Checkout repository"
15
- uses : " actions/checkout@v4"
16
14
- name : " Cache local Maven repository"
17
15
uses : " actions/cache@v4"
18
16
with :
Original file line number Diff line number Diff line change 14
14
runs-on : " ubuntu-latest"
15
15
outputs :
16
16
build_version : " ${{ steps.set_variables.outputs.build_version }}"
17
- java_version : " ${{ steps.set_variables.outputs.java_version }}"
18
- docker_image : " ${{ steps.set_variables.outputs.docker_image }}"
17
+ java_version : " ${{ steps.set_variables.outputs.java_version }}"
18
+ docker_image : " ${{ steps.set_variables.outputs.docker_image }}"
19
19
steps :
20
20
- id : " set_variables"
21
21
run : |
@@ -34,10 +34,14 @@ jobs:
34
34
name : " HotSpot"
35
35
runs-on : " ubuntu-latest"
36
36
needs : [ "set_variables" ]
37
- container :
38
- image : " ghcr.io/mangadex-pub/jdk-maven:${{ needs.set_variables.outputs.java_version }}-corretto"
39
- options : " --user root"
40
37
steps :
38
+ - name : " Checkout repository"
39
+ uses : " actions/checkout@v4"
40
+ - name : " Install JDK"
41
+ uses : " actions/setup-java@4"
42
+ with :
43
+ distribution : " corretto"
44
+ java-version : " ${{ needs.set_variables.outputs.java_version }}"
41
45
- name : " Maven Build (JIT)"
42
46
uses : " ./.github/actions/maven-build"
43
47
with :
57
61
image : " ghcr.io/mangadex-pub/jdk-maven:${{ needs.set_variables.outputs.java_version }}-graal"
58
62
options : " --user root"
59
63
steps :
64
+ - name : " Checkout repository"
65
+ uses : " actions/checkout@v4"
60
66
- name : " Maven Build (AOT)"
61
67
uses : " ./.github/actions/maven-build"
62
68
with :
You can’t perform that action at this time.
0 commit comments