mirror of
https://github.com/mapstruct/mapstruct.git
synced 2025-07-12 00:00:08 +08:00
Add dedicated action for Java EA builds and update main CI to use only 11, 13 and 14
This commit is contained in:
parent
2b2299a730
commit
42e0ec395b
21
.github/workflows/java-ea.yml
vendored
Normal file
21
.github/workflows/java-ea.yml
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
name: Java EA
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test_jdk_ea:
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
java: [15-ea]
|
||||||
|
name: 'Linux JDK ${{ matrix.java }}'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: 'Checkout'
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: 'Set up JDK'
|
||||||
|
uses: actions/setup-java@v1
|
||||||
|
with:
|
||||||
|
java-version: ${{ matrix.java }}
|
||||||
|
- name: 'Test'
|
||||||
|
run: ./mvnw -V -B --no-transfer-progress install -DskipDistribution=true
|
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
@ -11,7 +11,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
java: [11, 12, 13, 14-ea, 15-ea]
|
java: [11, 13, 14]
|
||||||
name: 'Linux JDK ${{ matrix.java }}'
|
name: 'Linux JDK ${{ matrix.java }}'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user