GitHub actions: run test suite on JDK 16 too

This commit is contained in:
Alex Osborne
2021-07-25 14:11:13 +09:00
parent f4bd5d1015
commit f0d9385120
+2 -2
View File
@@ -10,7 +10,7 @@ jobs:
build:
strategy:
matrix:
jdk: [8, 11]
jdk: [8, 11, 16]
runs-on: ubuntu-latest
timeout-minutes: 30
@@ -34,4 +34,4 @@ jobs:
# Apparently Azure kills idle http connections after 4 minutes which can cause the build to fail
# with a timeout error. Limit the connection ttl to 2 minutes to workaround this as per
# https://github.com/actions/virtual-environments/issues/1499
MAVEN_OPTS: -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3
MAVEN_OPTS: -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3