We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dc5266 commit 706b03bCopy full SHA for 706b03b
.github/workflows/main.yml
@@ -10,7 +10,7 @@ on:
10
workflow_dispatch:
11
12
jobs:
13
- build:
+ build-jdk11:
14
runs-on: ubuntu-latest
15
16
steps:
@@ -19,9 +19,23 @@ jobs:
19
uses: actions/setup-java@v2
20
with:
21
java-version: '11'
22
- distribution: 'adopt'
23
24
- name: Build with Maven
25
- run: mvn clean install
+ run: mvn clean install -Pforbiddenapis
+ env:
26
+ MAVEN_OPTS: -Xmx2048m
27
+
28
+ build-jdk17:
29
+ runs-on: ubuntu-latest
30
31
+ steps:
32
+ - uses: actions/checkout@v2
33
+ - name: Set up JDK 17
34
+ uses: actions/setup-java@v2
35
+ with:
36
+ java-version: '17'
37
38
+ - name: Build with Maven
39
40
env:
41
MAVEN_OPTS: -Xmx2048m
0 commit comments