Build and Push Container images - 3.8.Final #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Push Container images - 3.8.Final | |
env: | |
IMAGE_BASE_NAME: "quay.io/quarkus-super-heroes" | |
MANDREL_IMAGE: "quay.io/quarkus/ubi-quarkus-mandrel-builder-image" | |
LATEST_IMAGE_TAG: "latest" | |
BRANCH: 3.8.Final | |
on: | |
workflow_run: | |
workflows: | |
- "Basic build and test" | |
branches: | |
- 3.8.Final | |
types: | |
- completed | |
workflow_dispatch: | |
concurrency: | |
group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.workflow_run.head_branch || github.event.ref || github.ref }}" | |
cancel-in-progress: false | |
jobs: | |
build-jvm-images: | |
if: ((github.event_name == 'workflow_dispatch') || ((github.event_name == 'workflow_run') && ((github.event.workflow_run.event == 'push') || (github.event.workflow_run.event == 'workflow_dispatch')) && (github.event.workflow_run.conclusion == 'success'))) && ((github.repository == 'quarkusio/quarkus-super-heroes') && ((github.event.workflow_run.head_branch == '3.8.Final'))) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: | |
- '17' | |
project: | |
- { name: event-statistics } | |
- { name: rest-fights } | |
- { name: rest-heroes } | |
- { name: rest-villains } | |
- { name: rest-narration } | |
- { name: rest-narration, openai-type: azure-openai } | |
- { name: grpc-locations } | |
- { name: ui-super-heroes } | |
arch: | |
- amd64 | |
- arm64 | |
name: "Build JVM images (${{ matrix.arch }}-${{ matrix.project.name }}-java${{ matrix.java }}-${{ matrix.project.openai-type }})" | |
steps: | |
- name: Calculate Branch (workflow_run event) | |
if: github.event_name == 'workflow_run' | |
run: echo "REF=${{ github.event.workflow_run.head_commit.id }}" >> $GITHUB_ENV | |
- name: Calculate Branch (workflow_dispatch event) | |
if: github.event_name == 'workflow_dispatch' | |
run: echo "REF=${{ github.sha }}" >> $GITHUB_ENV | |
- name: Checkout from ${{ env.REF }} | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ env.REF }} | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: temurin | |
cache: maven | |
- name: Create env vars | |
working-directory: ${{ matrix.project.name }} | |
run: | | |
if [[ ${{ matrix.java }} == '17' ]]; then | |
echo "JVM_DOCKERFILE=Dockerfile.jvm" >> "$GITHUB_ENV" | |
else | |
echo "JVM_DOCKERFILE=Dockerfile.jvm${{ matrix.java }}" >> "$GITHUB_ENV" | |
fi | |
- name: Create OpenAI env vars | |
if: matrix.project.openai-type | |
working-directory: ${{ matrix.project.name }} | |
run: echo "QUARKUS_PROFILE=${{ matrix.project.openai-type }}" >> $GITHUB_ENV | |
- name: Create CONTAINER_TAG | |
working-directory: .github/workflows/scripts | |
shell: bash | |
run: echo "CONTAINER_TAG=$(./compute-container-tag.sh "" ${{ matrix.java }} ${{ env.LATEST_IMAGE_TAG }} ${{ env.BRANCH }} "${{ matrix.project.openai-type }}")" >> $GITHUB_ENV | |
- name: Set up QEMU | |
if: matrix.arch == 'arm64' | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: ${{ matrix.arch }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
install: true | |
- name: Build JVM image (${{ matrix.project.name }}-java${{ matrix.java }}-${{ matrix.arch }}-${{ matrix.project.openai-type }}) | |
working-directory: ${{ matrix.project.name }} | |
run: | | |
./mvnw -B clean package -DskipTests \ | |
-Dmaven.compiler.release=${{ matrix.java }} \ | |
-Dquarkus.http.host=0.0.0.0 \ | |
-Dquarkus.container-image.build=true \ | |
-Dquarkus.container-image.push=false \ | |
-Dquarkus.container-image.tag=${{ env.CONTAINER_TAG }}-${{ matrix.arch }} \ | |
-Dquarkus.docker.dockerfile-jvm-path=src/main/docker/${{ env.JVM_DOCKERFILE }} \ | |
-Dquarkus.docker.buildx.platform=linux/${{ matrix.arch }} | |
- name: Save JVM Image (${{ matrix.project.name }}-java${{ matrix.java }}-${{ matrix.arch }}-${{ matrix.project.openai-type }}) | |
uses: ishworkh/[email protected] | |
with: | |
image: "${{ env.IMAGE_BASE_NAME }}/${{ matrix.project.name }}:${{ env.CONTAINER_TAG }}-${{ matrix.arch }}" | |
build-native-images: | |
if: ((github.event_name == 'workflow_dispatch') || ((github.event_name == 'workflow_run') && ((github.event.workflow_run.event == 'push') || (github.event.workflow_run.event == 'workflow_dispatch')) && (github.event.workflow_run.conclusion == 'success'))) && ((github.repository == 'quarkusio/quarkus-super-heroes') && ((github.event.workflow_run.head_branch == '3.8.Final'))) | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
java: | |
- { jvm: '17', mandrel: '21' } | |
project: | |
- { name: event-statistics } | |
- { name: rest-fights } | |
- { name: rest-heroes } | |
- { name: rest-villains } | |
- { name: rest-narration } | |
- { name: rest-narration, openai-type: azure-openai } | |
- { name: grpc-locations } | |
- { name: ui-super-heroes } | |
arch: | |
- amd64 | |
- arm64 | |
name: "Build Native images (${{ matrix.arch }}-${{ matrix.project.name }}-java${{ matrix.java.jvm }}-${{ matrix.project.openai-type }})" | |
steps: | |
- name: Calculate Branch (workflow_run event) | |
if: github.event_name == 'workflow_run' | |
run: echo "REF=${{ github.event.workflow_run.head_commit.id }}" >> $GITHUB_ENV | |
- name: Calculate Branch (workflow_dispatch event) | |
if: github.event_name == 'workflow_dispatch' | |
run: echo "REF=${{ github.sha }}" >> $GITHUB_ENV | |
- name: Checkout from ${{ env.REF }} | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ env.REF }} | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java.jvm }} | |
distribution: temurin | |
cache: maven | |
- name: Create OpenAI env vars | |
if: matrix.project.openai-type | |
working-directory: ${{ matrix.project.name }} | |
run: echo "QUARKUS_PROFILE=${{ matrix.project.openai-type }}" >> $GITHUB_ENV | |
- name: Create CONTAINER_TAG | |
working-directory: .github/workflows/scripts | |
shell: bash | |
run: echo "CONTAINER_TAG=$(./compute-container-tag.sh "native-" ${{ matrix.java.jvm }} ${{ env.LATEST_IMAGE_TAG }} ${{ env.BRANCH }} "${{ matrix.project.openai-type }}")" >> $GITHUB_ENV | |
- name: Set up QEMU | |
if: matrix.arch == 'arm64' | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: ${{ matrix.arch }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
install: true | |
- name: Build native image (${{ matrix.project.name }}-java${{ matrix.java.jvm }}-${{ matrix.arch }}-${{ matrix.project.openai-type }}) | |
working-directory: ${{ matrix.project.name }} | |
run: | | |
./mvnw -B clean package -DskipTests -Pnative \ | |
-Dmaven.compiler.release=${{ matrix.java.jvm }} \ | |
-Dquarkus.http.host=0.0.0.0 \ | |
-Dquarkus.native.container-build=true \ | |
-Dquarkus.native.builder-image=${{ env.MANDREL_IMAGE }}:jdk-${{ matrix.java.mandrel }} \ | |
-Dquarkus.native.container-runtime-options=--platform=linux/${{ matrix.arch }} \ | |
-Dquarkus.container-image.build=true \ | |
-Dquarkus.container-image.push=false \ | |
-Dquarkus.container-image.tag=${{ env.CONTAINER_TAG }}-${{ matrix.arch }} \ | |
-Dquarkus.docker.buildx.platform=linux/${{ matrix.arch }} | |
- name: Save native Image (${{ matrix.project.name }}-java${{ matrix.java.jvm }}-${{ matrix.arch }}-${{ matrix.project.openai-type }}) | |
uses: ishworkh/[email protected] | |
with: | |
image: "${{ env.IMAGE_BASE_NAME }}/${{ matrix.project.name }}:${{ env.CONTAINER_TAG }}-${{ matrix.arch }}" | |
push-app-images: | |
if: ((github.event_name == 'workflow_dispatch') || ((github.event_name == 'workflow_run') && ((github.event.workflow_run.event == 'push') || (github.event.workflow_run.event == 'workflow_dispatch')) && (github.event.workflow_run.conclusion == 'success'))) && ((github.repository == 'quarkusio/quarkus-super-heroes') && ((github.event.workflow_run.head_branch == '3.8.Final'))) | |
needs: | |
- build-jvm-images | |
- build-native-images | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: | |
- '17' | |
kind: | |
- "" | |
- "native-" | |
project: | |
- { name: event-statistics } | |
- { name: rest-fights } | |
- { name: rest-heroes } | |
- { name: rest-villains } | |
- { name: rest-narration } | |
- { name: rest-narration, openai-type: azure-openai } | |
- { name: grpc-locations } | |
- { name: ui-super-heroes } | |
arch: | |
- amd64 | |
- arm64 | |
name: "Push app images (${{ matrix.arch }}-${{ matrix.project.name }}-${{ matrix.kind }}java${{ matrix.java }}-${{ matrix.project.openai-type }})" | |
steps: | |
- name: Calculate Branch (workflow_run event) | |
if: github.event_name == 'workflow_run' | |
run: echo "REF=${{ github.event.workflow_run.head_commit.id }}" >> $GITHUB_ENV | |
- name: Calculate Branch (workflow_dispatch event) | |
if: github.event_name == 'workflow_dispatch' | |
run: echo "REF=${{ github.sha }}" >> $GITHUB_ENV | |
- name: Checkout from ${{ env.REF }} | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ env.REF }} | |
- name: Create CONTAINER_TAG | |
working-directory: .github/workflows/scripts | |
shell: bash | |
run: echo "CONTAINER_TAG=$(./compute-container-tag.sh "${{ matrix.kind }}" ${{ matrix.java }} ${{ env.LATEST_IMAGE_TAG }} ${{ env.BRANCH }} "${{ matrix.project.openai-type }}")" >> $GITHUB_ENV | |
- name: Get saved images (${{ matrix.project.name }}:${{ env.CONTAINER_TAG }}-${{ matrix.arch }}) | |
uses: ishworkh/[email protected] | |
with: | |
image: "${{ env.IMAGE_BASE_NAME }}/${{ matrix.project.name }}:${{ env.CONTAINER_TAG }}-${{ matrix.arch }}" | |
- name: Login to quay | |
uses: docker/login-action@v3 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAY_REPO_USERNAME }} | |
password: ${{ secrets.QUAY_REPO_TOKEN }} | |
- name: Push images | |
working-directory: ${{ matrix.project.name }} | |
run: "docker push -a ${{ env.IMAGE_BASE_NAME }}/${{ matrix.project.name }}" | |
create-app-multiarch-manifests: | |
if: ((github.event_name == 'workflow_dispatch') || ((github.event_name == 'workflow_run') && ((github.event.workflow_run.event == 'push') || (github.event.workflow_run.event == 'workflow_dispatch')) && (github.event.workflow_run.conclusion == 'success'))) && ((github.repository == 'quarkusio/quarkus-super-heroes') && ((github.event.workflow_run.head_branch == '3.8.Final'))) | |
needs: push-app-images | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: | |
- '17' | |
kind: | |
- "" | |
- "native-" | |
project: | |
- { name: event-statistics } | |
- { name: rest-fights } | |
- { name: rest-heroes } | |
- { name: rest-villains } | |
- { name: rest-narration } | |
- { name: rest-narration, openai-type: azure-openai } | |
- { name: grpc-locations } | |
- { name: ui-super-heroes } | |
name: Create app multiarch manifests (${{ matrix.project.name }}-${{ matrix.kind }}java${{ matrix.java }}-${{ matrix.project.openai-type }}) | |
steps: | |
- name: Calculate Branch (workflow_run) | |
if: github.event_name == 'workflow_run' | |
run: echo "REF=${{ github.event.workflow_run.head_commit.id }}" >> $GITHUB_ENV | |
- name: Calculate Branch (workflow_dispatch event) | |
if: github.event_name == 'workflow_dispatch' | |
run: echo "REF=${{ github.sha }}" >> $GITHUB_ENV | |
- name: Checkout from ${{ env.REF }} | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ env.REF }} | |
- name: Create CONTAINER_TAG | |
working-directory: .github/workflows/scripts | |
shell: bash | |
run: echo "CONTAINER_TAG=$(./compute-container-tag.sh "${{ matrix.kind }}" ${{ matrix.java }} ${{ env.LATEST_IMAGE_TAG }} ${{ env.BRANCH }} "${{ matrix.project.openai-type }}")" >> $GITHUB_ENV | |
- name: Login to quay | |
uses: docker/login-action@v3 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAY_REPO_USERNAME }} | |
password: ${{ secrets.QUAY_REPO_TOKEN }} | |
- name: Create and push multi-arch manifests | |
shell: bash | |
run: | | |
docker manifest create ${{ env.IMAGE_BASE_NAME }}/${{ matrix.project.name }}:${{ env.CONTAINER_TAG }} \ | |
-a ${{ env.IMAGE_BASE_NAME }}/${{ matrix.project.name }}:${{ env.CONTAINER_TAG }}-amd64 \ | |
-a ${{ env.IMAGE_BASE_NAME }}/${{ matrix.project.name }}:${{ env.CONTAINER_TAG }}-arm64 | |
docker manifest push ${{ env.IMAGE_BASE_NAME }}/${{ matrix.project.name }}:${{ env.CONTAINER_TAG }} | |
deploy-resources-workflow-run: | |
if: ((github.event_name == 'workflow_run') && ((github.event.workflow_run.event == 'push') || (github.event.workflow_run.event == 'workflow_dispatch')) && (github.event.workflow_run.conclusion == 'success') && (github.repository == 'quarkusio/quarkus-super-heroes')) && ((github.event.workflow_run.head_branch == '3.8.Final')) | |
needs: create-app-multiarch-manifests | |
uses: quarkusio/quarkus-super-heroes/.github/workflows/create-deploy-resources.yml@main | |
secrets: inherit | |
with: | |
commit_id: ${{ github.event.workflow_run.head_commit.id }} | |
branch: ${{ github.event.workflow_run.head_branch }} | |
deploy-resources-workflow-dispatch: | |
if: ((github.event_name == 'workflow_dispatch') && (github.repository == 'quarkusio/quarkus-super-heroes')) && ((github.ref_name == '3.8.Final')) | |
needs: create-app-multiarch-manifests | |
uses: quarkusio/quarkus-super-heroes/.github/workflows/create-deploy-resources.yml@main | |
secrets: inherit | |
with: | |
commit_id: ${{ github.sha }} | |
branch: ${{ github.ref_name }} | |
cleanup-artifacts: | |
needs: | |
- deploy-resources-workflow-run | |
- deploy-resources-workflow-dispatch | |
if: always() | |
runs-on: ubuntu-latest | |
steps: | |
- name: Delete artifacts | |
env: | |
WEBHOOK_SECRET: ${{ secrets.WEBHOOK_SECRET }} | |
run: | | |
echo "::add-mask::$WEBHOOK_SECRET" | |
curl --verbose --fail --show-error --location --request POST "https://api.github.com/repos/$GITHUB_REPOSITORY/dispatches" --header "Authorization: token $WEBHOOK_SECRET" --header 'Content-Type: application/json' --header 'Accept: application/vnd.github.everest-preview+json' --data-raw "{ \"event_type\": \"delete_all_artifacts\", \"client_payload\": {\"parent_runid\": \"$GITHUB_RUN_ID\", \"parent_repo\": \"$GITHUB_REPOSITORY\"} }" |