blob: 434503131ab7e06170f3fb35051c409dcf2e11cf [file] [log] [blame]
Yong Nib2e4bfa2017-05-09 18:12:10 -07001#!/usr/bin/env python2.7
Jan Tattermusch7897ae92017-06-07 22:57:36 +02002# Copyright 2017 gRPC authors.
Yong Nib2e4bfa2017-05-09 18:12:10 -07003#
Jan Tattermusch7897ae92017-06-07 22:57:36 +02004# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
Yong Nib2e4bfa2017-05-09 18:12:10 -07007#
Jan Tattermusch7897ae92017-06-07 22:57:36 +02008# http://www.apache.org/licenses/LICENSE-2.0
Yong Nib2e4bfa2017-05-09 18:12:10 -07009#
Jan Tattermusch7897ae92017-06-07 22:57:36 +020010# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
Yong Nib2e4bfa2017-05-09 18:12:10 -070015
16# Dictionaries used for client matrix testing.
17
18def get_github_repo(lang):
19 return {
20 'go': 'git@github.com:grpc/grpc-go.git',
21 'java': 'git@github.com:grpc/grpc-java.git',
Yong Ni51750dc2017-07-14 11:30:56 -070022 # all other languages use the grpc.git repo.
Yong Nib2e4bfa2017-05-09 18:12:10 -070023 }.get(lang, 'git@github.com:grpc/grpc.git')
24
25# Dictionary of runtimes per language
26LANG_RUNTIME_MATRIX = {
Yong Ni51750dc2017-07-14 11:30:56 -070027 'cxx': ['cxx'], # This is actually debian8.
Yong Nib2e4bfa2017-05-09 18:12:10 -070028 'go': ['go1.7', 'go1.8'],
Yong Nib92813b2017-05-31 12:07:09 -070029 'java': ['java_oracle8'],
Adele Zhoufe783c12017-11-08 11:32:22 -080030 #'python': ['python'], # All python versions fail the tests due to timeout.
Adele Zhoubcd23cd2017-11-01 15:42:00 -070031 'node': ['node'],
Adele Zhou1487c9f2017-10-26 17:59:18 -070032 'ruby': ['ruby'],
Adele Zhou9fe79dc2017-11-02 14:08:29 -070033 'php': ['php', 'php7'],
Adele Zhouf7f38d12017-11-02 17:57:54 -070034 'csharp': ['csharp', 'csharpcoreclr'],
Yong Nib2e4bfa2017-05-09 18:12:10 -070035}
36
37# Dictionary of releases per language. For each language, we need to provide
Yong Nibbd348c2017-07-18 08:38:11 -070038# a release tag pointing to the latest build of the branch.
Yong Nib2e4bfa2017-05-09 18:12:10 -070039LANG_RELEASE_MATRIX = {
Yong Nibbd348c2017-07-18 08:38:11 -070040 'cxx': [
41 'v1.0.1',
42 'v1.1.4',
43 'v1.2.5',
44 'v1.3.9',
45 'v1.4.2',
Adele Zhou1751af12017-10-18 17:37:05 -070046 'v1.6.6',
Yong Nibbd348c2017-07-18 08:38:11 -070047 ],
48 'go': [
49 'v1.0.5',
50 'v1.2.1',
51 'v1.3.0',
52 'v1.4.2',
Adele Zhou1751af12017-10-18 17:37:05 -070053 'v1.5.2',
54 'v1.6.0',
55 'v1.7.0',
Yong Nibbd348c2017-07-18 08:38:11 -070056 ],
57 'java': [
58 'v1.0.3',
59 'v1.1.2',
60 'v1.2.0',
61 'v1.3.1',
62 'v1.4.0',
63 'v1.5.0',
Adele Zhou1751af12017-10-18 17:37:05 -070064 'v1.6.1',
65 'v1.7.0',
Yong Nibbd348c2017-07-18 08:38:11 -070066 ],
Adele Zhoufe783c12017-11-08 11:32:22 -080067 #'python': [
Adele Zhou9fe79dc2017-11-02 14:08:29 -070068 #'v1.0.x', #Fail to run the test. #13230.
Adele Zhoufe783c12017-11-08 11:32:22 -080069 # 'v1.1.4',
70 # 'v1.2.5',
71 # 'v1.3.9',
72 # 'v1.4.2',
73 # 'v1.6.6',
74 #],
Adele Zhou1487c9f2017-10-26 17:59:18 -070075 'node': [
Adele Zhoubcd23cd2017-11-01 15:42:00 -070076 'v1.0.1',
77 'v1.1.4',
78 'v1.2.5',
79 'v1.3.9',
80 'v1.4.2',
Adele Zhou1487c9f2017-10-26 17:59:18 -070081 'v1.6.6',
82 ],
83 'ruby': [
Adele Zhou9fe79dc2017-11-02 14:08:29 -070084 # Ruby v1.0.x doesn't have the fix #8914, therefore not supported.
Adele Zhou1487c9f2017-10-26 17:59:18 -070085 'v1.1.4',
86 'v1.2.5',
87 'v1.3.9',
88 'v1.4.2',
89 'v1.6.6',
90 ],
Adele Zhou9fe79dc2017-11-02 14:08:29 -070091 'php': [
92 'v1.0.1',
93 'v1.1.4',
94 'v1.2.5',
95 'v1.3.9',
96 'v1.4.2',
97 'v1.6.6',
98 ],
Adele Zhouf7f38d12017-11-02 17:57:54 -070099 'csharp': [
Adele Zhouf7f38d12017-11-02 17:57:54 -0700100 #'v1.0.1',
Adele Zhoud21204c2017-11-08 11:18:32 -0800101 #'v1.1.4', Fail to build.
Jan Tattermusch608b73e2017-11-13 19:17:07 +0100102 'v1.2.5',
Adele Zhoud21204c2017-11-08 11:18:32 -0800103 'v1.3.9',
Adele Zhouf7f38d12017-11-02 17:57:54 -0700104 'v1.4.2',
105 'v1.6.6',
106 ],
Yong Nib2e4bfa2017-05-09 18:12:10 -0700107}