Skip to content

Commit 6a49ee7

Browse files
committed
skip
1 parent 429fb71 commit 6a49ee7

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/reusable-smoke-test-images.yml

+4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ on:
2222
skip-java-8:
2323
type: boolean
2424
required: false
25+
skip-java-11:
26+
type: boolean
27+
required: false
2528
skip-java-17:
2629
type: boolean
2730
required: false
@@ -70,6 +73,7 @@ jobs:
7073
run: ./gradlew ${{ inputs.project }}:${{ inputs.publish && 'jib' || 'jibDockerBuild' }} -Ptag=${{ env.TAG }} -PtargetJDK=8 -Djib.httpTimeout=120000 -Djib.console=plain
7174

7275
- name: Build Java 11 Docker image
76+
if: "!inputs.skip-java-11"
7377
run: ./gradlew ${{ inputs.project }}:${{ inputs.publish && 'jib' || 'jibDockerBuild' }} -Ptag=${{ env.TAG }} -PtargetJDK=11 -Djib.httpTimeout=120000 -Djib.console=plain
7478

7579
- name: Build Java 17 Docker image

smoke-tests/images/quarkus/build.gradle.kts

-5
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,6 @@ jib {
4646
container {
4747
mainClass = "bogus" // to suppress Jib warning about missing main class
4848
}
49-
pluginExtensions {
50-
pluginExtension {
51-
implementation = "com.google.cloud.tools.jib.gradle.extension.quarkus.JibQuarkusExtension"
52-
}
53-
}
5449
}
5550

5651
tasks {

0 commit comments

Comments
 (0)