File tree 2 files changed +4
-5
lines changed
smoke-tests/images/quarkus
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 22
22
skip-java-8 :
23
23
type : boolean
24
24
required : false
25
+ skip-java-11 :
26
+ type : boolean
27
+ required : false
25
28
skip-java-17 :
26
29
type : boolean
27
30
required : false
70
73
run : ./gradlew ${{ inputs.project }}:${{ inputs.publish && 'jib' || 'jibDockerBuild' }} -Ptag=${{ env.TAG }} -PtargetJDK=8 -Djib.httpTimeout=120000 -Djib.console=plain
71
74
72
75
- name : Build Java 11 Docker image
76
+ if : " !inputs.skip-java-11"
73
77
run : ./gradlew ${{ inputs.project }}:${{ inputs.publish && 'jib' || 'jibDockerBuild' }} -Ptag=${{ env.TAG }} -PtargetJDK=11 -Djib.httpTimeout=120000 -Djib.console=plain
74
78
75
79
- name : Build Java 17 Docker image
Original file line number Diff line number Diff line change 46
46
container {
47
47
mainClass = " bogus" // to suppress Jib warning about missing main class
48
48
}
49
- pluginExtensions {
50
- pluginExtension {
51
- implementation = " com.google.cloud.tools.jib.gradle.extension.quarkus.JibQuarkusExtension"
52
- }
53
- }
54
49
}
55
50
56
51
tasks {
You can’t perform that action at this time.
0 commit comments