CI: Migrate Sonar Scan job to GHA
[portal/nonrtric-controlpanel.git] / .github / workflows / gerrit-merge.yaml
1 ---
2 name: Gerrit Merge
3
4 # yamllint disable-line rule:truthy
5 on:
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
45 concurrency:
46   # yamllint disable-line rule:line-length
47   group: gerrit-merge-${{ github.workflow }}-${{ github.event.inputs.GERRIT_CHANGE_ID || github.run_id }}
48   cancel-in-progress: true
49
50 jobs:
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       - name: Allow replication
66         run: sleep 10s
67
68   run-maven-sonar:
69     needs: notify
70     # yamllint disable-line rule:line-length
71     uses: lfit/releng-reusable-workflows/.github/workflows/composed-maven-sonar-cloud.yaml@main
72     with:
73       GERRIT_BRANCH: ${{ inputs.GERRIT_BRANCH }}
74       GERRIT_CHANGE_ID: ${{ inputs.GERRIT_CHANGE_ID }}
75       GERRIT_CHANGE_NUMBER: ${{ inputs.GERRIT_CHANGE_NUMBER }}
76       GERRIT_CHANGE_URL: ${{ inputs.GERRIT_CHANGE_URL }}
77       GERRIT_EVENT_TYPE: ${{ inputs.GERRIT_EVENT_TYPE }}
78       GERRIT_PATCHSET_NUMBER: ${{ inputs.GERRIT_PATCHSET_NUMBER }}
79       GERRIT_PATCHSET_REVISION: ${{ inputs.GERRIT_PATCHSET_REVISION }}
80       GERRIT_PROJECT: ${{ inputs.GERRIT_PROJECT }}
81       GERRIT_REFSPEC: ${{ inputs.GERRIT_REFSPEC }}
82       # yamllint disable rule:line-length
83       ENV_VARS: '{"SONARCLOUD_QUALITYGATE_WAIT": "false","SCAN_DEV_BRANCH": "false"}'
84       ENV_SECRETS: "{}"
85       JDK_VERSION: "17"
86       MVN_PHASES: "clean install"
87       MVN_OPTS: >-
88         -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
89         -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r
90         -DaltDeploymentRepository=staging::default::file:"${GITHUB_WORKSPACE}"/m2repo
91       SONAR_PROJECT_KEY: "o-ran-sc_portal-nonrtric-controlpanel-gateway"
92       SONAR_ORG: "o-ran-sc"
93       SONAR_ARGS: >
94         -Dsonar.verbose=true
95     secrets:
96       SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
97
98   report-status:
99     if: ${{ always() }}
100     needs: [notify, run-maven-sonar]
101     runs-on: ubuntu-latest
102     steps:
103       - name: Get workflow conclusion
104         uses: technote-space/workflow-conclusion-action@v3
105       - name: Report workflow conclusion
106         # yamllint disable-line rule:line-length
107         uses: lfit/gerrit-review-action@9627b9a144f2a2cad70707ddfae87c87dce60729  # v0.8
108         with:
109           host: ${{ vars.GERRIT_SERVER }}
110           username: ${{ vars.GERRIT_SSH_USER }}
111           key: ${{ secrets.GERRIT_SSH_PRIVKEY }}
112           known_hosts: ${{ vars.GERRIT_KNOWN_HOSTS }}
113           gerrit-change-number: ${{ inputs.GERRIT_CHANGE_NUMBER }}
114           gerrit-patchset-number: ${{ inputs.GERRIT_PATCHSET_NUMBER }}
115           vote-type: ${{ env.WORKFLOW_CONCLUSION }}