stop testing older releases with go1.7: 1.8 should be enough

pull/17671/head
Jan Tattermusch 6 years ago
parent 54963bb90d
commit 4f11b96500
  1. 4
      tools/interop_matrix/README.md
  2. 4
      tools/interop_matrix/client_matrix.py

@ -42,10 +42,10 @@ For more details on each step, refer to sections below.
- The output for all the test cases is recorded in a junit style xml file (default to 'report.xml'). - The output for all the test cases is recorded in a junit style xml file (default to 'report.xml').
## Instructions for running test cases against a GCR image manually ## Instructions for running test cases against a GCR image manually
- Download docker image from GCR. For example: `gcloud docker -- pull gcr.io/grpc-testing/grpc_interop_go1.7:master`. - Download docker image from GCR. For example: `gcloud docker -- pull gcr.io/grpc-testing/grpc_interop_go1.8:master`.
- Run test cases by specifying `docker_image` variable inline with the test case script created above. - Run test cases by specifying `docker_image` variable inline with the test case script created above.
For example: For example:
- `docker_image=gcr.io/grpc-testing/grpc_interop_go1.7:master ./testcases/go__master` will run go__master test cases against `go1.7` with gRPC release `master` docker image in GCR. - `docker_image=gcr.io/grpc-testing/grpc_interop_go1.8:master ./testcases/go__master` will run go__master test cases against `go1.8` with gRPC release `master` docker image in GCR.
Note: Note:
- File path starting with `tools/` or `template/` are relative to the grpc repo root dir. File path starting with `./` are relative to current directory (`tools/interop_matrix`). - File path starting with `tools/` or `template/` are relative to the grpc repo root dir. File path starting with `./` are relative to current directory (`tools/interop_matrix`).

@ -57,7 +57,7 @@ def should_build_docker_interop_image_from_release_tag(lang):
# Dictionary of runtimes per language # Dictionary of runtimes per language
LANG_RUNTIME_MATRIX = { LANG_RUNTIME_MATRIX = {
'cxx': ['cxx'], # This is actually debian8. 'cxx': ['cxx'], # This is actually debian8.
'go': ['go1.7', 'go1.8', 'go1.11'], 'go': ['go1.8', 'go1.11'],
'java': ['java_oracle8'], 'java': ['java_oracle8'],
'python': ['python'], 'python': ['python'],
'node': ['node'], 'node': ['node'],
@ -116,7 +116,7 @@ LANG_RELEASE_MATRIX = {
('v1.14.0', ReleaseInfo(skip_runtime=['go1.11'])), ('v1.14.0', ReleaseInfo(skip_runtime=['go1.11'])),
('v1.15.0', ReleaseInfo(skip_runtime=['go1.11'])), ('v1.15.0', ReleaseInfo(skip_runtime=['go1.11'])),
('v1.16.0', ReleaseInfo(skip_runtime=['go1.11'])), ('v1.16.0', ReleaseInfo(skip_runtime=['go1.11'])),
('v1.17.0', ReleaseInfo(skip_runtime=['go1.7', 'go1.8'])), ('v1.17.0', ReleaseInfo(skip_runtime=['go1.8'])),
]), ]),
'java': 'java':
OrderedDict([ OrderedDict([

Loading…
Cancel
Save