Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 4 additions & 11 deletions .github/workflows/reusable-pr-smoke-test-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,15 @@ on:
skip-java-11:
type: boolean
required: false
skip-java-17:
type: boolean
required: false
skip-java-21:
type: boolean
required: false
Comment on lines -25 to -30
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these skips aren't used


permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
env:
LATEST_JAVA_VERSION: 23 # renovate: datasource=java-version
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

Expand Down Expand Up @@ -64,13 +60,10 @@ jobs:
run: ./gradlew ${{ inputs.project }}:jibDockerBuild -Ptag=${{ env.TAG }} -PtargetJDK=11 -Djib.httpTimeout=120000 -Djib.console=plain

- name: Build Java 17 Docker image
if: "!inputs.skip-java-17"
run: ./gradlew ${{ inputs.project }}:jibDockerBuild -Ptag=${{ env.TAG }} -PtargetJDK=17 -Djib.httpTimeout=120000 -Djib.console=plain

- name: Build Java 21 Docker image
if: "!inputs.skip-java-21"
run: ./gradlew ${{ inputs.project }}:jibDockerBuild -Ptag=${{ env.TAG }} -PtargetJDK=21 -Djib.httpTimeout=120000 -Djib.console=plain

- name: Build Java 23 Docker image
if: "!inputs.skip-java-23"
run: ./gradlew ${{ inputs.project }}:jibDockerBuild -Ptag=${{ env.TAG }} -PtargetJDK=23 -Djib.httpTimeout=120000 -Djib.console=plain
- name: Build Java ${{ env.LATEST_JAVA_VERSION }} Docker image
run: ./gradlew ${{ inputs.project }}:jibDockerBuild -Ptag=${{ env.TAG }} -PtargetJDK=${{ env.LATEST_JAVA_VERSION }} -Djib.httpTimeout=120000 -Djib.console=plain
15 changes: 4 additions & 11 deletions .github/workflows/reusable-publish-smoke-test-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,6 @@ on:
skip-java-11:
type: boolean
required: false
skip-java-17:
type: boolean
required: false
skip-java-21:
type: boolean
required: false

permissions:
contents: read
Expand All @@ -38,6 +32,8 @@ jobs:
permissions:
contents: read
packages: write
env:
LATEST_JAVA_VERSION: 23 # renovate: datasource=java-version
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

Expand Down Expand Up @@ -74,13 +70,10 @@ jobs:
run: ./gradlew ${{ inputs.project }}:jib -Ptag=${{ env.TAG }} -PtargetJDK=11 -Djib.httpTimeout=120000 -Djib.console=plain

- name: Build Java 17 Docker image
if: "!inputs.skip-java-17"
run: ./gradlew ${{ inputs.project }}:jib -Ptag=${{ env.TAG }} -PtargetJDK=17 -Djib.httpTimeout=120000 -Djib.console=plain

- name: Build Java 21 Docker image
if: "!inputs.skip-java-21"
run: ./gradlew ${{ inputs.project }}:jib -Ptag=${{ env.TAG }} -PtargetJDK=21 -Djib.httpTimeout=120000 -Djib.console=plain

- name: Build Java 23 Docker image
if: "!inputs.skip-java-23"
run: ./gradlew ${{ inputs.project }}:jib -Ptag=${{ env.TAG }} -PtargetJDK=23 -Djib.httpTimeout=120000 -Djib.console=plain
- name: Build Java ${{ env.LATEST_JAVA_VERSION }} Docker image
run: ./gradlew ${{ inputs.project }}:jib -Ptag=${{ env.TAG }} -PtargetJDK=${{ env.LATEST_JAVA_VERSION }} -Djib.httpTimeout=120000 -Djib.console=plain
Loading