Bump org.jvnet.hudson.plugins:analysis-pom from 6.10.0 to 6.12.0 #1442
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
name: 'Run UI tests' | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
details-tab: | |
runs-on: [ubuntu-latest] | |
name: Details tab UI tests | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
check-latest: true | |
cache: 'maven' | |
- name: Build warnings plugin and download dependencies | |
run: mvn -V --color always -ntp verify -Pskip --file plugin/pom.xml -Dgpg.skip | |
- name: Run UI tests for the details tabs | |
env: | |
BROWSER: firefox-container | |
run: mvn -V --color always -ntp test --file ui-tests/pom.xml -Dtest=DetailsTabUiTest -Dgpg.skip -Dsurefire.rerunFailingTestsCount=1 | |
dashboard-view: | |
runs-on: [ubuntu-latest] | |
name: Dashboard view UI tests | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
check-latest: true | |
cache: 'maven' | |
- name: Build warnings plugin and download dependencies | |
run: mvn -V --color always -ntp verify -Pskip --file plugin/pom.xml -Dgpg.skip | |
- name: Run UI tests for the dashboard view | |
env: | |
BROWSER: firefox-container | |
run: mvn -V --color always -ntp test --file ui-tests/pom.xml -Dtest=DashboardViewPortletUiTest -Dgpg.skip -Dsurefire.rerunFailingTestsCount=1 | |
freestyle-configuration: | |
runs-on: [ubuntu-latest] | |
name: Freestyle configuration UI tests | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
check-latest: true | |
cache: 'maven' | |
- name: Build warnings plugin and download dependencies | |
run: mvn -V --color always -ntp verify -Pskip --file plugin/pom.xml -Dgpg.skip | |
- name: Run UI tests for the freestyle configuration | |
env: | |
BROWSER: firefox-container | |
run: mvn -V --color always -ntp test --file ui-tests/pom.xml -Dtest=FreeStyleConfigurationUiTest -Dgpg.skip -Dsurefire.rerunFailingTestsCount=1 | |
pipeline-snippet-generator: | |
runs-on: [ubuntu-latest] | |
name: Pipeline snippet configurator UI tests | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
check-latest: true | |
cache: 'maven' | |
- name: Build warnings plugin and download dependencies | |
run: mvn -V --color always -ntp verify -Pskip --file plugin/pom.xml -Dgpg.skip | |
- name: Run UI tests for the pipeline snippet configurator | |
env: | |
BROWSER: firefox-container | |
run: mvn -V --color always -ntp test --file ui-tests/pom.xml -Dtest=SnippetGeneratorUiTest -Dgpg.skip -Dsurefire.rerunFailingTestsCount=1 | |
global-configuration: | |
runs-on: [ubuntu-latest] | |
name: Global configuration UI tests | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
check-latest: true | |
cache: 'maven' | |
- name: Build warnings plugin and download dependencies | |
run: mvn -V --color always -ntp verify -Pskip --file plugin/pom.xml -Dgpg.skip | |
- name: Run UI tests for Jenkins' global configuration | |
env: | |
BROWSER: firefox-container | |
run: mvn -V --color always -ntp test --file ui-tests/pom.xml -Dtest=GlobalConfigurationUiTest -Dgpg.skip -Dsurefire.rerunFailingTestsCount=1 | |
issues-column: | |
runs-on: [ubuntu-latest] | |
name: Issues column UI tests | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
check-latest: true | |
cache: 'maven' | |
- name: Build warnings plugin and download dependencies | |
run: mvn -V --color always -ntp verify -Pskip --file plugin/pom.xml -Dgpg.skip | |
- name: Run UI tests for the issues column | |
env: | |
BROWSER: firefox-container | |
run: mvn -V --color always -ntp test --file ui-tests/pom.xml -Dtest=IssuesColumnUiTest -Dgpg.skip -Dsurefire.rerunFailingTestsCount=1 | |
trend-charts: | |
runs-on: [ubuntu-latest] | |
name: Trend charts UI tests | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
check-latest: true | |
cache: 'maven' | |
- name: Build warnings plugin and download dependencies | |
run: mvn -V --color always -ntp verify -Pskip --file plugin/pom.xml -Dgpg.skip | |
- name: Run UI tests for the trend charts | |
env: | |
BROWSER: firefox-container | |
run: mvn -V --color always -ntp test --file ui-tests/pom.xml -Dtest=TrendChartsUiTest -Dgpg.skip -Dsurefire.rerunFailingTestsCount=1 | |
miscellaneous: | |
runs-on: [ubuntu-latest] | |
name: Miscellaneous UI tests | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
check-latest: true | |
cache: 'maven' | |
- name: Build warnings plugin and download dependencies | |
run: mvn -V --color always -ntp verify -Pskip --file plugin/pom.xml -Dgpg.skip | |
- name: Run miscellaneous UI tests of the warnings plugin | |
env: | |
BROWSER: firefox-container | |
run: mvn -V --color always -ntp test --file ui-tests/pom.xml -Dtest=TrendChartsUiTest -Dgpg.skip -Dsurefire.rerunFailingTestsCount=1 | |