2 name: Gerrit Maven Merge
4 # yamllint disable-line rule:truthy
9 description: "Branch that change is against"
13 description: "The ID for the change"
17 description: "The Gerrit number"
21 description: "URL to the change"
25 description: "Type of Gerrit event"
28 GERRIT_PATCHSET_NUMBER:
29 description: "The patch number for the change"
32 GERRIT_PATCHSET_REVISION:
33 description: "The revision sha"
37 description: "Project in Gerrit"
41 description: "Gerrit refspec of change"
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
52 runs-on: ubuntu-latest
54 - name: Notify job start
55 # yamllint disable-line rule:line-length
56 uses: lfit/gerrit-review-action@9627b9a144f2a2cad70707ddfae87c87dce60729 # v0.8
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 }}
66 - name: Allow replication
71 # yamllint disable-line rule:line-length
72 uses: lfit/releng-reusable-workflows/.github/workflows/composed-maven-sonar-cloud.yaml@main
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"}'
87 MVN_PHASES: "clean install"
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-rappmanager"
97 SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
101 needs: [notify, run-maven-sonar]
102 runs-on: ubuntu-latest
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
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 }}