blob: 044d56458d92b77e0c97b89e4ea813e1964948f7 [file] [log] [blame]
Jessica Wagantalla190d0e2024-04-12 15:55:50 -07001---
2name: Gerrit Maven Merge
3
4# yamllint disable-line rule:truthy
5on:
6 workflow_dispatch:
7 inputs:
8 GERRIT_BRANCH:
9 description: "Branch that change is against"
10 required: true
11 type: string
12 GERRIT_CHANGE_ID:
13 description: "The ID for the change"
14 required: true
15 type: string
16 GERRIT_CHANGE_NUMBER:
17 description: "The Gerrit number"
18 required: true
19 type: string
20 GERRIT_CHANGE_URL:
21 description: "URL to the change"
22 required: true
23 type: string
24 GERRIT_EVENT_TYPE:
25 description: "Type of Gerrit event"
26 required: true
27 type: string
28 GERRIT_PATCHSET_NUMBER:
29 description: "The patch number for the change"
30 required: true
31 type: string
32 GERRIT_PATCHSET_REVISION:
33 description: "The revision sha"
34 required: true
35 type: string
36 GERRIT_PROJECT:
37 description: "Project in Gerrit"
38 required: true
39 type: string
40 GERRIT_REFSPEC:
41 description: "Gerrit refspec of change"
42 required: true
43 type: string
44
45concurrency:
46 # yamllint disable-line rule:line-length
47 group: compose-maven-merge-${{ github.workflow }}-${{ github.event.inputs.GERRIT_CHANGE_ID || github.run_id }}
48 cancel-in-progress: true
49
50jobs:
51 notify:
52 runs-on: ubuntu-latest
53 steps:
54 - name: Notify job start
55 # yamllint disable-line rule:line-length
56 uses: lfit/gerrit-review-action@9627b9a144f2a2cad70707ddfae87c87dce60729 # v0.8
57 with:
58 host: ${{ vars.GERRIT_SERVER }}
59 username: ${{ vars.GERRIT_SSH_USER }}
60 key: ${{ secrets.GERRIT_SSH_PRIVKEY }}
61 known_hosts: ${{ vars.GERRIT_KNOWN_HOSTS }}
62 gerrit-change-number: ${{ inputs.GERRIT_CHANGE_NUMBER }}
63 gerrit-patchset-number: ${{ inputs.GERRIT_PATCHSET_NUMBER }}
64 vote-type: clear
65 comment-only: true
66 - name: Allow replication
67 run: sleep 10s
68
69 run-maven-sonar:
70 needs: notify
71 # yamllint disable-line rule:line-length
72 uses: lfit/releng-reusable-workflows/.github/workflows/composed-maven-sonar-cloud.yaml@main
73 with:
74 GERRIT_BRANCH: ${{ inputs.GERRIT_BRANCH }}
75 GERRIT_CHANGE_ID: ${{ inputs.GERRIT_CHANGE_ID }}
76 GERRIT_CHANGE_NUMBER: ${{ inputs.GERRIT_CHANGE_NUMBER }}
77 GERRIT_CHANGE_URL: ${{ inputs.GERRIT_CHANGE_URL }}
78 GERRIT_EVENT_TYPE: ${{ inputs.GERRIT_EVENT_TYPE }}
79 GERRIT_PATCHSET_NUMBER: ${{ inputs.GERRIT_PATCHSET_NUMBER }}
80 GERRIT_PATCHSET_REVISION: ${{ inputs.GERRIT_PATCHSET_REVISION }}
81 GERRIT_PROJECT: ${{ inputs.GERRIT_PROJECT }}
82 GERRIT_REFSPEC: ${{ inputs.GERRIT_REFSPEC }}
83 # yamllint disable rule:line-length
84 ENV_VARS: '{"SONARCLOUD_QUALITYGATE_WAIT": "false","SCAN_DEV_BRANCH": "false"}'
85 ENV_SECRETS: "{}"
86 JDK_VERSION: "17"
87 MVN_PHASES: "clean install"
88 MVN_OPTS: >-
89 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
90 -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r
91 -DaltDeploymentRepository=staging::default::file:"${GITHUB_WORKSPACE}"/m2repo
92 SONAR_PROJECT_KEY: "o-ran-sc_nonrtric-plt-dmaapadapter"
93 SONAR_ORG: "o-ran-sc"
94 SONAR_ARGS: >
95 -Dsonar.verbose=true
96 secrets:
97 SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
98
99 report-status:
100 if: ${{ always() }}
101 needs: [notify, run-maven-sonar]
102 runs-on: ubuntu-latest
103 steps:
104 - name: Get workflow conclusion
105 uses: technote-space/workflow-conclusion-action@v3
106 - name: Report workflow conclusion
107 # yamllint disable-line rule:line-length
108 uses: lfit/gerrit-review-action@9627b9a144f2a2cad70707ddfae87c87dce60729 # v0.8
109 with:
110 host: ${{ vars.GERRIT_SERVER }}
111 username: ${{ vars.GERRIT_SSH_USER }}
112 key: ${{ secrets.GERRIT_SSH_PRIVKEY }}
113 known_hosts: ${{ vars.GERRIT_KNOWN_HOSTS }}
114 gerrit-change-number: ${{ inputs.GERRIT_CHANGE_NUMBER }}
115 gerrit-patchset-number: ${{ inputs.GERRIT_PATCHSET_NUMBER }}
116 vote-type: ${{ env.WORKFLOW_CONCLUSION }}
117 comment-only: true