diff options
author | Yong Ni <yongni@google.com> | 2017-05-31 12:07:09 -0700 |
---|---|---|
committer | Yong Ni <yongni@google.com> | 2017-05-31 12:31:20 -0700 |
commit | b92813b18b33af85699740962b4fe62d7ff4b3a9 (patch) | |
tree | 034917e00443536d2443405b7a9a7dd52892ce0a /tools/interop_matrix | |
parent | bf2d87c816d59644bcafeb8384dd966c077fcae6 (diff) |
Created a Java Oracle8 Dockerfile directory and moved all build_interop.sh to under template/. Added java_oracle8 to the client matrix.
Diffstat (limited to 'tools/interop_matrix')
-rw-r--r-- | tools/interop_matrix/client_matrix.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/interop_matrix/client_matrix.py b/tools/interop_matrix/client_matrix.py index b06b0b7205..8ee468ada7 100644 --- a/tools/interop_matrix/client_matrix.py +++ b/tools/interop_matrix/client_matrix.py @@ -39,10 +39,12 @@ def get_github_repo(lang): # Dictionary of runtimes per language LANG_RUNTIME_MATRIX = { 'go': ['go1.7', 'go1.8'], + 'java': ['java_oracle8'], } # Dictionary of releases per language. For each language, we need to provide # a tuple of release tag (used as the tag for the GCR image) and also github hash. LANG_RELEASE_MATRIX = { 'go': ['v1.0.1-GA', 'v1.3.0'], + 'java': ['v1.0.3', 'v1.1.2'], } |