Skip to content

Commit

Permalink
BXMSPROD-963 pull_request.yml updated. Testing master
Browse files Browse the repository at this point in the history
  • Loading branch information
Ginxo committed Aug 27, 2020
1 parent 03a19ac commit 64dc660
Showing 1 changed file with 18 additions and 13 deletions.
31 changes: 18 additions & 13 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Chain [pull request]
name: Build Chain

on: [pull_request]

Expand All @@ -7,18 +7,23 @@ jobs:
strategy:
matrix:
java-version: [8, 11]
fail-fast: false
runs-on: ubuntu-latest
name: Build Pull Request
name: Maven Build
steps:
- name: Build Chain ${{ matrix.java-version }}
id: build-chain
uses: kiegroup/github-action-build-chain@v1.3
with:
parent-dependencies: 'droolsjbpm-build-bootstrap'
child-dependencies: 'appformer'
build-command: 'mvn -e -nsu -Dfull -Pwildfly clean install -Prun-code-coverage -Dcontainer.profile=wildfly -Dcontainer=wildfly -Dintegration-tests=true -Dmaven.test.failure.ignore=true -DjvmArgs="-Xms1g -Xmx4g"'
build-command-upstream: "mvn -e -T1C clean install -DskipTests -Dgwt.compiler.skip=true -Dgwt.skipCompilation=true -Denforcer.skip=true -Dcheckstyle.skip=true -Dspotbugs.skip=true -Drevapi.skip=true"
workflow-file-name: "pull_request.yml"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}
- name: Build Chain ${{ matrix.java-version }}
id: build-chain
uses: kiegroup/github-action-build-chain@master
with:
parent-dependencies: 'droolsjbpm-build-bootstrap'
child-dependencies: 'appformer'
build-command: 'mvn -e -nsu -Dfull -Pwildfly clean install -Prun-code-coverage -Dcontainer.profile=wildfly -Dcontainer=wildfly -Dintegration-tests=true -Dmaven.test.failure.ignore=true -DjvmArgs="-Xms1g -Xmx4g"'
build-command-upstream: "mvn -e -T1C clean install -DskipTests -Dgwt.compiler.skip=true -Dgwt.skipCompilation=true -Denforcer.skip=true -Dcheckstyle.skip=true -Dspotbugs.skip=true -Drevapi.skip=true"
workflow-file-name: "pull_request.yml"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 64dc660

Please sign in to comment.