This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
Bump org.jenkins-ci:acceptance-test-harness from 5588.vd13b_52985008 to 5740.vd30f30408987 #1591
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: 'GitHub CI' | |
on: | |
push: | |
branches: | |
- master | |
- main | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
jdk: [17] | |
include: | |
- platform: ubuntu-latest | |
jdk: 11 | |
- platform: macos-latest | |
jdk: 11 | |
runs-on: ${{ matrix.platform }} | |
name: on ${{ matrix.platform }} with JDK ${{ matrix.jdk }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Maven | |
uses: stCarolas/[email protected] | |
with: | |
maven-version: 3.9.1 | |
- name: Set up JDK ${{ matrix.jdk }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '${{ matrix.jdk }}' | |
check-latest: true | |
cache: 'maven' | |
- name: Build with Maven | |
env: | |
BROWSER: chrome-container | |
run: mvn -V --color always -ntp clean verify --file pom.xml '-Djenkins.test.timeout=5000' '-Dgpg.skip' |