Jira Integration Tests #230
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: Jira Integration Tests | |
on: | |
workflow_dispatch: | |
inputs: | |
ref: | |
description: Branch/tag/hash to use (defaults to master) | |
required: false | |
default: master | |
java-version: | |
description: JDK version to use | |
required: true | |
product-version: | |
description: Jira version to run tests against | |
required: true | |
testkit-version: | |
description: Testkit version to run tests against | |
required: false | |
jobs: | |
integration-tests-jira: | |
name: Jira Integration Tests | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 30 | |
steps: | |
- run: echo 'Github event inputs [${{ toJson(github.event.inputs) }}].' | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.inputs.ref }} | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ github.event.inputs.java-version }} | |
distribution: adopt | |
- run: bin/build/install-plugin-sdk.sh | |
- run: bin/build/override-plugin-sdk-maven.sh | |
- run: bin/build/install-int-test-libs.sh | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: maven-unit | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository/com/atlassian/jira | |
key: maven-integration-jira-${{ github.event.inputs.product-version }} | |
- run: bin/build/install-common-modules.sh | |
- run: | | |
VERSION=${{ github.event.inputs.product-version }} \ | |
TESTKIT_VERSION=${{ github.event.inputs.testkit-version }} \ | |
bin/build/run-jira-its.sh | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: webdriver-screenshots-jira-${{ github.event.inputs.product-version }}-java-${{ github.event.inputs.java-version }} | |
path: jira-slack-server-integration/jira-slack-server-integration-plugin/target/webdriverTests/** |