forked from mosip/registration
-
Notifications
You must be signed in to change notification settings - Fork 0
131 lines (123 loc) · 6.04 KB
/
push-trigger.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
name: 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.*
- develop
jobs:
build-maven-registration:
uses: mosip/kattu/.github/workflows/maven-build.yml@master
with:
SERVICE_LOCATION: ./registration-processor
BUILD_ARTIFACT: registration
secrets:
OSSRH_USER: ${{ secrets.OSSRH_USER }}
OSSRH_SECRET: ${{ secrets.OSSRH_SECRET }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_SECRET: ${{ secrets.GPG_SECRET }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}
publish_to_nexus:
if: "${{ !contains(github.ref, 'master') && github.event_name != 'pull_request' && github.event_name != 'release' && github.event_name != 'prerelease' && github.event_name != 'publish' }}"
needs: build-maven-registration
uses: mosip/kattu/.github/workflows/maven-publish-to-nexus.yml@master
with:
SERVICE_LOCATION: ./registration-processor
secrets:
OSSRH_USER: ${{ secrets.OSSRH_USER }}
OSSRH_SECRET: ${{ secrets.OSSRH_SECRET }}
OSSRH_URL: ${{ secrets.RELEASE_URL }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_SECRET: ${{ secrets.GPG_SECRET }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}
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 }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}
sonar_analysis:
needs: build-maven-registration
if: "${{ github.event_name != 'pull_request' }}"
uses: mosip/kattu/.github/workflows/maven-sonar-analysis.yml@master
with:
SERVICE_LOCATION: ./registration-processor
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
ORG_KEY: ${{ secrets.ORG_KEY }}
OSSRH_USER: ${{ secrets.OSSRH_USER }}
OSSRH_SECRET: ${{ secrets.OSSRH_SECRET }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_SECRET: ${{ secrets.GPG_SECRET }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}