blob: 23c5ae00c1c6e5b1e7102341ff8623d5ab845684 [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'],
Yong Nib2e4bfa2017-05-09 18:12:10 -070030}
31
32# Dictionary of releases per language. For each language, we need to provide
Yong Nibbd348c2017-07-18 08:38:11 -070033# a release tag pointing to the latest build of the branch.
Yong Nib2e4bfa2017-05-09 18:12:10 -070034LANG_RELEASE_MATRIX = {
Yong Nibbd348c2017-07-18 08:38:11 -070035 'cxx': [
36 'v1.0.1',
37 'v1.1.4',
38 'v1.2.5',
39 'v1.3.9',
40 'v1.4.2',
Adele Zhou1751af12017-10-18 17:37:05 -070041 'v1.6.6',
Yong Nibbd348c2017-07-18 08:38:11 -070042 ],
43 'go': [
44 'v1.0.5',
45 'v1.2.1',
46 'v1.3.0',
47 'v1.4.2',
Adele Zhou1751af12017-10-18 17:37:05 -070048 'v1.5.2',
49 'v1.6.0',
50 'v1.7.0',
Yong Nibbd348c2017-07-18 08:38:11 -070051 ],
52 'java': [
53 'v1.0.3',
54 'v1.1.2',
55 'v1.2.0',
56 'v1.3.1',
57 'v1.4.0',
58 'v1.5.0',
Adele Zhou1751af12017-10-18 17:37:05 -070059 'v1.6.1',
60 'v1.7.0',
Yong Nibbd348c2017-07-18 08:38:11 -070061 ],
Yong Nib2e4bfa2017-05-09 18:12:10 -070062}