8000 Update version to 7.58.0.Final-Micord.1 · Micord/drools@1da20dd · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

WEBBPMNEXT-9355: binary type #2

WEBBPMNEXT-9355: binary type

WEBBPMNEXT-9355: binary type #2

Workflow file for this run

name: Build Chain
on: [pull_request]
jobs:
build-chain:
concurrency:
group: pull_request-${{ github.head_ref }}
cancel-in-progress: true
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
java-version: [8, 11]
fail-fast: false
runs-on: ${{ matrix.os }}
name: Maven Build
steps:
- name: Support longpaths
if: ${{ matrix.os == 'windows-latest' }}
run: git config --system core.longpaths true
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}
# See https://docs.github.com/en/actions/guides/building-and-testing-java-with-maven#caching-dependencies
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-${{ matrix.java-version }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-${{ matrix.java-version }}-m2
- name: Build Chain ${{ matrix.java-version }}
id: build-chain
uses: kiegroup/github-action-build-chain@v2.6.3
with:
definition-file: https://raw.githubusercontent.com/${GROUP}/droolsjbpm-build-bootstrap/${BRANCH}/.ci/pull-request-config.yaml
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: Check Surefire Report
if: ${{ always() }}
uses: ScaCap/action-surefire-report@v1.0.10
with:
fail_on_test_failures: true
fail_if_no_tests: false
skip_publishing: true
0