This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
Bump xerces:xercesImpl from 2.12.0.SP04 to 2.12.2 in /build-parent #3
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
# Tests RHBOP productized profile builds on PRs | |
name: Optaplanner Downstream | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, labeled] | |
branches: | |
- main | |
- 8.* | |
paths-ignore: | |
- 'LICENSE*' | |
- '.gitignore' | |
- '**.md' | |
- '**.adoc' | |
- '*.txt' | |
- 'docsimg/**' | |
- '.ci/jenkins/**' | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
productized-build-chain: | |
concurrency: | |
group: rhbop_pull_request-${{ github.event_name }}-${{ github.head_ref }}-${{ matrix.os }}-${{ matrix.java-version }}-${{ matrix.maven-version }} | |
cancel-in-progress: true | |
timeout-minutes: 120 | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
java-version: [11] | |
maven-version: ['3.8.7'] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
name: ${{ matrix.os }} / Java-${{ matrix.java-version }} / Maven-${{ matrix.maven-version }} | |
steps: | |
- name: Clean Disk Space | |
uses: kiegroup/kie-ci/.ci/actions/ubuntu-disk-space@main | |
- name: Java and Maven Setup | |
uses: kiegroup/kie-ci/.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: Productized Build Chain | |
uses: kiegroup/kie-ci/.ci/actions/build-chain@main | |
env: | |
# maven-assembly-plugin occasionally fails on heap space when building the ZIP in optaplanner-docs | |
MAVEN_OPTS: "-Xmx2048m" | |
with: | |
definition-file: https://raw.githubusercontent.com/${GROUP:kiegroup}/optaplanner/${BRANCH:main}/.ci/pull-request-config-rhbop.yaml | |
annotations-prefix: ${{ runner.os }}-${{ matrix.java-version }}/${{ matrix.maven-version }} | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
starting-project: kiegroup/optaplanner | |
- name: Surefire Report | |
uses: kiegroup/kie-ci/.ci/actions/surefire-report@main | |
if: ${{ always() }} | |
with: | |
report_paths: '**/*-reports/TEST-*.xml' | |