[1.13.x][BXMSPROD-2209] move prod nightly to use rhel8 #2
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/**' | |
- 'dsl/**' | |
jobs: | |
jenkinsfile-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
path: main | |
- name: Checkout shared libraries | |
uses: actions/checkout@v2 | |
with: | |
repository: kiegroup/jenkins-pipeline-shared-libraries | |
path: shared-libs | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Setup pipeline env | |
run: cd $GITHUB_WORKSPACE/main/.ci/jenkins/tests && ./setup_pipeline_env.sh | |
- name: Test pipelines | |
run: cd $GITHUB_WORKSPACE/main/.ci/jenkins/tests && mvn -B clean test | |
dsl-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up JDK 1.11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Test DSL | |
run: cd .ci/jenkins/dsl && ./test.sh |