Upgrade atlassian-webdriver-core to 3.3.3 #3
Workflow file for this run
This file contains hidden or 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: Ubuntu 22 Firefox Test | |
on: | |
push: | |
pull_request: | |
types: [assigned, opened, synchronize, reopened, edited] | |
workflow_dispatch: | |
inputs: | |
ref: | |
description: Branch/tag/hash to use (defaults to master) | |
required: false | |
default: release-1.x | |
jobs: | |
log-params: | |
name: Log Params | |
runs-on: ubuntu-22.04 | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
steps: | |
- run: echo "Github event inputs [${{ toJson(github.event.inputs) }}]." | |
- run: echo "Head commit message [${{ github.event.head_commit.message }}]." | |
# check path to bundled Maven executable; it should be then used in ATLAS_MVN | |
- run: mvn -version | |
integration-tests-confluence: | |
name: Confluence IT | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
# every version part should be 0 <= <version> <= 255; otherwise Confluence fails to start | |
java-version: [17] | |
confluence-version: [8.9.3] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.inputs.ref }} | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.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-${{ matrix.confluence-version }} | |
- run: bin/build/install-common-modules.sh | |
- run: VERSION=${{ matrix.confluence-version }} bin/build/run-confluence-its.sh | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: webdriver-screenshots-confluence-${{ matrix.confluence-version }}-java-${{ matrix.java-version }} | |
path: confluence-slack-server-integration-plugin/target/webdriverTests/** |