From 597055fca3003928e37244fef4f6644e3d198148 Mon Sep 17 00:00:00 2001 From: Nikolay Martynov Date: Thu, 6 Jun 2019 16:55:39 -0400 Subject: [PATCH 1/2] Fix typo --- gradle/java.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/java.gradle b/gradle/java.gradle index 9f6b50da8f..e83c00b681 100644 --- a/gradle/java.gradle +++ b/gradle/java.gradle @@ -26,7 +26,7 @@ java { doFirst { // We do this specifically for Java7 bytecode generation because we would like to be able to compile // with Java8+ compiler. This likely would require some modifications when we switch to java11 compiler. - // Using proper Java7 bootstrap and extentions allows to be sure our code will run on real Java7. + // Using proper Java7 bootstrap and extensions allows to be sure our code will run on real Java7. if (JavaVersion.toVersion(sourceCompatibility) == JavaVersion.VERSION_1_7 && JavaVersion.current() != JavaVersion.VERSION_1_7 && System.env.JAVA_7_HOME != null) { From c1ce3c710306c19029a54460232c57b7d02d5da3 Mon Sep 17 00:00:00 2001 From: Nikolay Martynov Date: Thu, 6 Jun 2019 16:55:50 -0400 Subject: [PATCH 2/2] Add Java12 build --- .circleci/config.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index f72cd345f7..4b3fb07018 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -115,6 +115,11 @@ jobs: environment: - TEST_TASK: testJava11 + test_12: + <<: *default_test_job + environment: + - TEST_TASK: testJava12 + agent_integration_tests: <<: *defaults docker: @@ -268,6 +273,12 @@ workflows: filters: tags: only: /.*/ + - test_12: + requires: + - build + filters: + tags: + only: /.*/ - agent_integration_tests: requires: @@ -298,6 +309,7 @@ workflows: - test_9 - test_10 - test_11 + - test_12 - agent_integration_tests - check filters: @@ -314,6 +326,7 @@ workflows: - test_9 - test_10 - test_11 + - test_12 - agent_integration_tests - check filters: