This repository has been archived by the owner on Mar 14, 2024. It is now read-only.
Jenkins Tests #559
Workflow file for this run
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
# This workflow will build a Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Jenkins Tests | |
on: | |
pull_request: | |
paths: | |
- '.ci/jenkins/**' | |
- '.github/workflows/jenkins-tests-PR.yml' | |
jobs: | |
dsl-tests: | |
concurrency: | |
group: ${{ github.repository.name }}_dsl_tests-${{ github.head_ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: DSL tests | |
uses: kiegroup/kie-ci/.ci/actions/dsl-tests@main | |
with: | |
main-config-file-repo: apache/incubator-kie-kogito-pipelines | |
main-config-file-path: .ci/jenkins/config/main.yaml | |
branch-config-file-repo: apache/incubator-kie-kogito-pipelines |