Skip to content

Commit

Permalink
testing timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Ginxo committed Sep 4, 2020
1 parent 1582452 commit dc78860
Showing 1 changed file with 19 additions and 30 deletions.
49 changes: 19 additions & 30 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,25 @@ name: Build Chain
on: [pull_request]

jobs:
build-chain-openjdk8:
build-chain:
strategy:
matrix:
java-version: [8]
fail-fast: false
runs-on: ubuntu-latest
name: Pull Request openjdk8
name: Maven Build
steps:
- uses: actions/checkout@v2
- name: Build Chain
id: build-chain
uses: kiegroup/github-action-build-chain@openjdk8
with:
parent-dependencies: 'kie-soup'
child-dependencies: 'droolsjbpm-knowledge'
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:
- 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: 'kie-soup|:build-chain-openjdk8'
child-dependencies: 'droolsjbpm-knowledge|:build-chain-openjdk8'
build-command: 'mvn -e -nsu -Dfull -Pwildfly install -Prun-code-coverage -Dcontainer.profile=wildfly -Dcontainer=wildfly -Dintegration-tests=true -Dmaven.test.failure.ignore=true'
workflow-file-name: "pull_request.yml"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
build-chain-openjdk11:
runs-on: ubuntu-latest
name: Pull Request openjdk11
steps:
- uses: actions/checkout@v2
- name: Build Chain
id: build-chain
uses: kiegroup/github-action-build-chain@openjdk11
with:
parent-dependencies: 'kie-soup'
child-dependencies: 'droolsjbpm-knowledge'
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 dc78860

Please sign in to comment.