-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BXMSPROD-1601 [main] provide FDB github action for RHBA project (#585)
* BXMSPROD-1601 [main] provide FDB github action for RHBA project * pull_request_template.md updated * pointing to kogito-pipelines
- Loading branch information
Showing
3 changed files
with
58 additions
and
7 deletions.
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
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,49 @@ | ||
name: Build Chain | ||
|
||
on: | ||
pull_request: | ||
types: [labeled] | ||
branches: | ||
- main | ||
paths-ignore: | ||
- 'LICENSE*' | ||
- '.gitignore' | ||
- '*.md' | ||
- '*.txt' | ||
|
||
jobs: | ||
build-chain: | ||
if: contains(github.event.pull_request.labels.*.name, 'run_fdb') | ||
concurrency: | ||
group: fdb-${{ github.head_ref }} | ||
cancel-in-progress: true | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
java-version: [11] | ||
maven-version: ['3.8.1'] | ||
fail-fast: false | ||
runs-on: ${{ matrix.os }} | ||
name: Full downstream build | ||
steps: | ||
- name: Clean Disk Space | ||
uses: kiegroup/kogito-pipelines/.ci/actions/ubuntu-disk-space@main | ||
if: ${{ matrix.os == 'ubuntu-latest' }} | ||
- name: Support long paths | ||
if: ${{ matrix.os == 'windows-latest' }} | ||
uses: kiegroup/kogito-pipelines/.ci/actions/long-paths@main | ||
- name: Java and Maven Setup | ||
uses: kiegroup/kogito-pipelines/.ci/actions/maven@main | ||
with: | ||
java-version: ${{ matrix.java-version }} | ||
maven-version: ${{ matrix.maven-version }} | ||
cache-key-prefix: ${{ runner.os }}-${{ matrix.java-version }}-maven${{ matrix.maven-version }} | ||
- name: Build Chain | ||
uses: kiegroup/kogito-pipelines/.ci/actions/build-chain@main | ||
with: | ||
annotations-prefix: ${{ runner.os }}-${{ matrix.java-version }}/${{ matrix.maven-version }} | ||
github-token: "${{ secrets.GITHUB_TOKEN }}" | ||
flow-type: full-downstream | ||
- name: Surefire Report | ||
uses: kiegroup/kogito-pipelines/.ci/actions/surefire-report@main | ||
if: ${{ always() }} |
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