Skip to content

Commit

Permalink
Vertx Update as part of Performance Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
trialblazerseee committed Sep 24, 2024
1 parent c0d047b commit e46e583
Showing 1 changed file with 95 additions and 0 deletions.
95 changes: 95 additions & 0 deletions .github/workflows/manual-push-trigger.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
name: Manual Maven Package upon a push

on:
release:
types: [published]
pull_request:
types: [opened, reopened, synchronize]

workflow_dispatch:
inputs:
message:
description: 'Message for manually triggering'
required: false
default: 'Triggered for Updates'
type: string
push:
branches:
- '!release-branch'
- release-1*
- master
- 1.*
- mec*
- develop

jobs:
build-maven-registration:
uses: mosip/kattu/.github/workflows/maven-build.yml@master
with:
SERVICE_LOCATION: ./registration-processor
BUILD_ARTIFACT: registration

build-dockers:
needs: build-maven-registration
strategy:
matrix:
include:
- SERVICE_LOCATION: 'registration-processor/post-processor/registration-processor-registration-transaction-service'
SERVICE_NAME: 'registration-processor-registration-transaction-service'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-1'
SERVICE_NAME: 'registration-processor-stage-group-1'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-2'
SERVICE_NAME: 'registration-processor-stage-group-2'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-3'
SERVICE_NAME: 'registration-processor-stage-group-3'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-4'
SERVICE_NAME: 'registration-processor-stage-group-4'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-5'
SERVICE_NAME: 'registration-processor-stage-group-5'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-6'
SERVICE_NAME: 'registration-processor-stage-group-6'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/stage-groups/registration-processor-stage-group-7'
SERVICE_NAME: 'registration-processor-stage-group-7'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/core-processor/registration-processor-abis'
SERVICE_NAME: 'registration-processor-abis'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/workflow-engine/registration-processor-reprocessor'
SERVICE_NAME: 'registration-processor-reprocessor'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/init/registration-processor-dmz-packet-server'
SERVICE_NAME: 'registration-processor-dmz-packet-server'
- SERVICE_LOCATION: 'registration-processor/init/registration-processor-registration-status-service'
SERVICE_NAME: 'registration-processor-registration-status-service'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/registration-processor-notification-service'
SERVICE_NAME: 'registration-processor-notification-service'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/registration-processor-landing-zone'
SERVICE_NAME: 'registration-processor-landing-zone'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/workflow-engine/registration-processor-workflow-manager-service'
SERVICE_NAME: 'registration-processor-workflow-manager-service'
BUILD_ARTIFACT: 'registration'
- SERVICE_LOCATION: 'registration-processor/registration-processor-common-camel-bridge'
SERVICE_NAME: 'registration-processor-common-camel-bridge'
BUILD_ARTIFACT: 'registration'

fail-fast: false
name: ${{ matrix.SERVICE_NAME }}
uses: mosip/kattu/.github/workflows/docker-build.yml@master
with:
SERVICE_LOCATION: ${{ matrix.SERVICE_LOCATION }}
SERVICE_NAME: ${{ matrix.SERVICE_NAME }}
BUILD_ARTIFACT: ${{ matrix.BUILD_ARTIFACT || false }}
secrets:
DEV_NAMESPACE_DOCKER_HUB: ${{ secrets.DEV_NAMESPACE_DOCKER_HUB }}
ACTOR_DOCKER_HUB: ${{ secrets.ACTOR_DOCKER_HUB }}
RELEASE_DOCKER_HUB: ${{ secrets.RELEASE_DOCKER_HUB }}

0 comments on commit e46e583

Please sign in to comment.