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 96d0d2f commit 866a250Copy full SHA for 866a250
.github/workflows/gradle.yml
@@ -14,7 +14,7 @@ jobs:
14
runs-on: ubuntu-latest
15
strategy:
16
matrix:
17
- java: [ 11 ]
+ java: [ 8,11 ]
18
steps:
19
- uses: actions/checkout@v2
20
- name: Set up JDK
Jenkinsfile
@@ -1,7 +1,14 @@
1
pipeline {
2
agent any
3
stages {
4
-
+ stage('build-Java8') {
5
+ tools {
6
+ jdk "Java8"
7
+ }
8
+ steps {
9
+ sh "./gradlew clean build"
10
11
12
stage('build-Java11') {
13
tools {
jdk "Java11"
0 commit comments