This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
[8.36.x-prod] Bump Quarkus version to 2.13.7.Final (#5150) #2
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
# name: Full downstream build | |
# on: | |
# pull_request: | |
# types: [labeled] | |
# branches: | |
# - main | |
# paths-ignore: | |
# - 'LICENSE' | |
# - '**/.gitignore' | |
# - '**.md' | |
# - '**.adoc' | |
# - '*.txt' | |
# - 'docsimg/**' | |
# - '.ci/jenkins/**' | |
# jobs: | |
# build-chain: | |
# if: contains(github.event.pull_request.labels.*.name, 'run_fdb') | |
# concurrency: | |
# group: fdb-drools_${{ matrix.os }}_${{ matrix.java-version }}_${{ matrix.maven-version }}_${{ github.head_ref }} | |
# cancel-in-progress: true | |
# strategy: | |
# matrix: | |
# os: [ubuntu-latest] | |
# java-version: [11] | |
# maven-version: ['3.8.7'] | |
# fail-fast: false | |
# runs-on: ${{ matrix.os }} | |
# name: Build Chain (${{ matrix.os }} / Java-${{ matrix.java-version }} / Maven-${{ matrix.maven-version }}) | |
# 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: | |
# definition-file: https://raw.githubusercontent.com/${GROUP:kiegroup}/drools/${BRANCH:main}/.ci/buildchain-config.yaml | |
# 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() }} |