-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[HNC-578] - Create process for Pentaho CUST case builds
- Loading branch information
Showing
3 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: CUST workflow | ||
on: | ||
push: | ||
branches: | ||
- HNC-578-9.3.0.6-CUST-277 | ||
|
||
workflow_dispatch: | ||
inputs: | ||
modules_to_build: | ||
required: true | ||
description: "The modules to build when running from the root of the project." | ||
slack_channels: | ||
required: false | ||
description: 'Slack channels where to send notificatons to' | ||
|
||
jobs: | ||
|
||
reusable-merge-workflow: | ||
uses: pentaho/actions-common/.github/workflows/merge.yml@HNC-578 | ||
with: | ||
version: "${{ github.ref_name }}" | ||
base_version: "" | ||
slack_channels: "${{ inputs.slack_channels }}" | ||
sonar_project_key: "org.pentaho.di:pdi" | ||
modules_to_build: ${{ inputs.modules_to_build }} | ||
run_snapshot: false | ||
run_versioning: false | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
sonar.sources=. | ||
sonar.inclusions=**/src/main/** | ||
sonar.tests=. | ||
sonar.test.inclusions=**/src/test/** | ||
sonar.java.binaries=**/target/classes | ||
sonar.coverage.jacoco.xmlReportPaths=**/jacoco.xml,**/jacocoTestReport.xml |