xref: /aosp_15_r20/external/grpc-grpc/tools/internal_ci/windows/grpc_distribtests_python.bat (revision cc02d7e222339f7a4f6ba5f422e6413f4bd931f2)
1@rem Copyright 2022 The gRPC Authors
2@rem
3@rem Licensed under the Apache License, Version 2.0 (the "License");
4@rem you may not use this file except in compliance with the License.
5@rem You may obtain a copy of the License at
6@rem
7@rem     http://www.apache.org/licenses/LICENSE-2.0
8@rem
9@rem Unless required by applicable law or agreed to in writing, software
10@rem distributed under the License is distributed on an "AS IS" BASIS,
11@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12@rem See the License for the specific language governing permissions and
13@rem limitations under the License.
14
15@rem Avoid slow finalization after the script has exited.
16@rem See the script's prologue for info on the correct invocation pattern.
17setlocal EnableDelayedExpansion
18IF "%cd%"=="T:\src" (
19  call %~dp0\..\..\..\tools\internal_ci\helper_scripts\move_src_tree_and_respawn_itself.bat %0
20  echo respawn script has finished with exitcode !errorlevel!
21  exit /b !errorlevel!
22)
23endlocal
24
25@rem enter repo root
26cd /d %~dp0\..\..\..
27
28set PREPARE_BUILD_INSTALL_DEPS_PYTHON=true
29call tools/internal_ci/helper_scripts/prepare_build_windows.bat || exit /b 1
30
31@rem Build all python windows artifacts
32python tools/run_tests/task_runner.py -f artifact windows python %TASK_RUNNER_EXTRA_FILTERS% -j 4 --inner_jobs 4 -x build_artifacts_python/sponge_log.xml || set FAILED=true
33
34@rem the next step expects to find the artifacts from the previous step in the "input_artifacts" folder.
35bash -c "rm -rf input_artifacts; mkdir -p input_artifacts; cp -r artifacts/* input_artifacts/ || true"
36
37@rem Collect the python artifact from subdirectories of input_artifacts/ to artifacts/
38@rem TODO(jtattermusch): when collecting the artifacts that will later be uploaded as kokoro job artifacts,
39@rem potentially skip some file names that would clash with linux-created artifacts.
40bash -c "cp -r input_artifacts/python_*/* artifacts/ || true"
41
42@rem TODO(jtattermusch): Here we would normally run python windows distribtests, but currently no such tests are defined
43@rem in distribtest_targets.py
44
45@rem This step checks if any of the artifacts exceeds a per-file size limit.
46bash tools/internal_ci/helper_scripts/check_python_artifacts_size.sh
47
48bash tools/internal_ci/helper_scripts/store_artifacts_from_moved_src_tree.sh
49
50if not "%FAILED%" == "" (
51  exit /b 1
52)
53