Skip to content

Bump org.jenkins-ci.plugins:plugin from 4.75 to 4.76 #99

Bump org.jenkins-ci.plugins:plugin from 4.75 to 4.76

Bump org.jenkins-ci.plugins:plugin from 4.75 to 4.76 #99

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build on Jenkins ${{ matrix.jenkins-version }}, JDK ${{ matrix.java }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
java: [11]
jenkins-version: [2.361]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v1
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: "temurin"
- name: Build with Maven
run: |
mvn install -B -V --no-transfer-progress ${{ matrix.flags }}