@@ -33,15 +33,15 @@ jobs:
33
33
with :
34
34
name : errors
35
35
path : job-initiate-error-tracking.txt
36
- build_jdk_8 :
37
- name : Build JDK 8
36
+ build_jdk_11 :
37
+ name : Build JDK 11
38
38
runs-on : ubuntu-latest
39
39
steps :
40
40
- uses : actions/checkout@v2
41
- - name : Set up JDK 8
41
+ - name : Set up JDK 11
42
42
uses : actions/setup-java@v1
43
43
with :
44
- java-version : ' 8 '
44
+ java-version : ' 11 '
45
45
- name : Cache Gradle packages
46
46
uses : actions/cache@v2
47
47
with :
@@ -65,11 +65,11 @@ jobs:
65
65
name : errors
66
66
path : job-${{ github.job }}.txt
67
67
test_alternate_jdks :
68
- name : Test JDK 11 and 12
68
+ name : Test JDK 12
69
69
runs-on : ubuntu-latest
70
70
strategy :
71
71
matrix :
72
- jdk : [11, 12]
72
+ jdk : [12]
73
73
fail-fast : false
74
74
steps :
75
75
- uses : actions/checkout@v2
@@ -107,7 +107,7 @@ jobs:
107
107
- name : Set up JDK
108
108
uses : actions/setup-java@v1
109
109
with :
110
- java-version : ' 8 '
110
+ java-version : ' 11 '
111
111
- name : Snapshot Tests
112
112
run : |
113
113
export GRADLE_ENTERPRISE_CACHE_USERNAME="$GRADLE_ENTERPRISE_CACHE_USER"
@@ -136,7 +136,7 @@ jobs:
136
136
- name : Set up JDK
137
137
uses : actions/setup-java@v1
138
138
with :
139
- java-version : ' 8 '
139
+ java-version : ' 11 '
140
140
- name : Run Sonar on given (non-master) branch
141
141
if : ${{ github.ref != 'refs/heads/master' }}
142
142
run : |
@@ -165,14 +165,14 @@ jobs:
165
165
path : job-${{ github.job }}.txt
166
166
deploy_artifacts :
167
167
name : Deploy Artifacts
168
- needs : [build_jdk_8 , test_alternate_jdks, snapshot_tests, sonar_analysis]
168
+ needs : [build_jdk_11 , test_alternate_jdks, snapshot_tests, sonar_analysis]
169
169
runs-on : ubuntu-latest
170
170
steps :
171
171
- uses : actions/checkout@v2
172
172
- name : Set up JDK
173
173
uses : actions/setup-java@v1
174
174
with :
175
- java-version : ' 8 '
175
+ java-version : ' 11 '
176
176
- name : Deploy artifacts
177
177
run : |
178
178
export GRADLE_ENTERPRISE_CACHE_USERNAME="$GRADLE_ENTERPRISE_CACHE_USER"
@@ -203,14 +203,14 @@ jobs:
203
203
path : job-${{ github.job }}.txt
204
204
deploy_docs :
205
205
name : Deploy Docs
206
- needs : [build_jdk_8 , test_alternate_jdks, snapshot_tests, sonar_analysis]
206
+ needs : [build_jdk_11 , test_alternate_jdks, snapshot_tests, sonar_analysis]
207
207
runs-on : ubuntu-latest
208
208
steps :
209
209
- uses : actions/checkout@v2
210
210
- name : Set up JDK
211
211
uses : actions/setup-java@v1
212
212
with :
213
- java-version : ' 8 '
213
+ java-version : ' 11 '
214
214
- name : Deploy Docs
215
215
run : |
216
216
export GRADLE_ENTERPRISE_CACHE_USERNAME="$GRADLE_ENTERPRISE_CACHE_USER"
@@ -234,14 +234,14 @@ jobs:
234
234
path : job-${{ github.job }}.txt
235
235
deploy_schema :
236
236
name : Deploy Schema
237
- needs : [build_jdk_8 , test_alternate_jdks, snapshot_tests, sonar_analysis]
237
+ needs : [build_jdk_11 , test_alternate_jdks, snapshot_tests, sonar_analysis]
238
238
runs-on : ubuntu-latest
239
239
steps :
240
240
- uses : actions/checkout@v2
241
241
- name : Set up JDK
242
242
uses : actions/setup-java@v1
243
243
with :
244
- java-version : ' 8 '
244
+ java-version : ' 11 '
245
245
- name : Deploy Schema
246
246
run : |
247
247
export GRADLE_ENTERPRISE_CACHE_USERNAME="$GRADLE_ENTERPRISE_CACHE_USER"
@@ -265,7 +265,7 @@ jobs:
265
265
path : job-${{ github.job }}.txt
266
266
notify_result :
267
267
name : Check for failures
268
- needs : [build_jdk_8 , test_alternate_jdks, snapshot_tests, sonar_analysis, deploy_artifacts, deploy_docs, deploy_schema]
268
+ needs : [build_jdk_11 , test_alternate_jdks, snapshot_tests, sonar_analysis, deploy_artifacts, deploy_docs, deploy_schema]
269
269
if : always()
270
270
runs-on : ubuntu-latest
271
271
steps :
0 commit comments