From 794690ad349d9c753e7e4190f12e39bd57033a9f Mon Sep 17 00:00:00 2001 From: Lidi Zheng Date: Tue, 15 Oct 2019 17:49:08 -0700 Subject: [PATCH] Remove macOS and Windows 3.8 artifacts --- tools/run_tests/artifacts/artifact_targets.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tools/run_tests/artifacts/artifact_targets.py b/tools/run_tests/artifacts/artifact_targets.py index 23599443f70..1ab64f5d65c 100644 --- a/tools/run_tests/artifacts/artifact_targets.py +++ b/tools/run_tests/artifacts/artifact_targets.py @@ -403,19 +403,22 @@ def targets(): PythonArtifact('macos', 'x64', 'python3.5'), PythonArtifact('macos', 'x64', 'python3.6'), PythonArtifact('macos', 'x64', 'python3.7'), - PythonArtifact('macos', 'x64', 'python3.8'), + # TODO(https://github.com/grpc/grpc/issues/20615) Enable this artifact + # PythonArtifact('macos', 'x64', 'python3.8'), PythonArtifact('windows', 'x86', 'Python27_32bits'), PythonArtifact('windows', 'x86', 'Python34_32bits'), PythonArtifact('windows', 'x86', 'Python35_32bits'), PythonArtifact('windows', 'x86', 'Python36_32bits'), PythonArtifact('windows', 'x86', 'Python37_32bits'), - PythonArtifact('windows', 'x86', 'Python38_32bits'), + # TODO(https://github.com/grpc/grpc/issues/20615) Enable this artifact + # PythonArtifact('windows', 'x86', 'Python38_32bits'), PythonArtifact('windows', 'x64', 'Python27'), PythonArtifact('windows', 'x64', 'Python34'), PythonArtifact('windows', 'x64', 'Python35'), PythonArtifact('windows', 'x64', 'Python36'), PythonArtifact('windows', 'x64', 'Python37'), - PythonArtifact('windows', 'x64', 'Python38'), + # TODO(https://github.com/grpc/grpc/issues/20615) Enable this artifact + # PythonArtifact('windows', 'x64', 'Python38'), RubyArtifact('linux', 'x64'), RubyArtifact('macos', 'x64'), PHPArtifact('linux', 'x64')