diff --git a/.ci/java-versions.properties b/.ci/java-versions.properties new file mode 100644 index 00000000000..a0713ce128e --- /dev/null +++ b/.ci/java-versions.properties @@ -0,0 +1,8 @@ +# This file is used with all of the non-matrix tests in Jenkins. + +# This .properties file defines the versions of Java with which to +# build and test Elasticsearch for this branch. Valid Java versions +# are 'java' or 'openjdk' followed by the major release number. + +ES_BUILD_JAVA=java10 +ES_RUNTIME_JAVA=java8 diff --git a/.ci/matrix-build-javas.yml b/.ci/matrix-build-javas.yml new file mode 100644 index 00000000000..84460e2a9a6 --- /dev/null +++ b/.ci/matrix-build-javas.yml @@ -0,0 +1,2 @@ +ES_BUILD_JAVA: + - java10 diff --git a/.ci/matrix-java-exclusions.yml b/.ci/matrix-java-exclusions.yml new file mode 100644 index 00000000000..8257f1a1ffb --- /dev/null +++ b/.ci/matrix-java-exclusions.yml @@ -0,0 +1 @@ +exclude: diff --git a/.ci/matrix-runtime-javas.yml b/.ci/matrix-runtime-javas.yml new file mode 100644 index 00000000000..ca4e98b8a0b --- /dev/null +++ b/.ci/matrix-runtime-javas.yml @@ -0,0 +1,3 @@ +ES_RUNTIME_JAVA: + - java8 + - java10