Confluence Integration Tests #210
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: Confluence 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: Confluence version to run tests against | |
required: true | |
jobs: | |
integration-tests-confluence: | |
name: Confluence 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/confluence | |
key: maven-integration-confluence-${{ github.event.inputs.product-version }} | |
- run: bin/build/install-common-modules.sh | |
- run: | | |
VERSION=${{ github.event.inputs.product-version }} \ | |
bin/build/run-confluence-its.sh | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: webdriver-screenshots-confluence-${{ github.event.inputs.product-version }}-java-${{ github.event.inputs.java-version }} | |
path: confluence-slack-server-integration-plugin/target/webdriverTests/** |