Searched +full:python +full:- +full:artifacts (Results 1 – 25 of 157) sorted by relevance
1234567
| /third_party/grpc/tools/internal_ci/linux/ |
| D | grpc_distribtests_python.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 16 set -ex 26 # some distribtests use a pre-registered binfmt_misc hook 34 # Build all python linux artifacts (this step actually builds all the binary wheels and source arch… 35 tools/run_tests/task_runner.py -f artifact linux python ${TASK_RUNNER_EXTRA_FILTERS} -j 12 -x build… 37 # the next step expects to find the artifacts from the previous step in the "input_artifacts" folde… 38 rm -rf input_artifacts 39 mkdir -p input_artifacts 40 cp -r artifacts/* input_artifacts/ || true 42 # This step simply collects python artifacts from subdirectories of input_artifacts/ and copies the… [all …]
|
| D | grpc_distribtests_gcp_python.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 16 set -ex 26 # some distribtests use a pre-registered binfmt_misc hook 34 # Build all python linux artifacts (this step actually builds all the binary wheels and source arch… 35 tools/run_tests/task_runner.py -f artifact linux python latest-manylinux ${TASK_RUNNER_EXTRA_FILTER… 37 # the next step expects to find the artifacts from the previous step in the "input_artifacts" folde… 38 rm -rf input_artifacts 39 mkdir -p input_artifacts 40 cp -r artifacts/* input_artifacts/ || true 41 rm -rf artifacts_from_build_artifacts_step [all …]
|
| /third_party/grpc/tools/internal_ci/macos/ |
| D | grpc_distribtests_python.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 16 set -ex 27 # TODO(jtattermusch): cleanup this prepare build step (needed for python artifact build) 28 # install cython for all python versions 29 python3.8 -m pip install -U 'cython<4.0.0rc1' setuptools==65.4.1 wheel --user 30 python3.9 -m pip install -U 'cython<4.0.0rc1' setuptools==65.4.1 wheel --user 31 python3.10 -m pip install -U 'cython<4.0.0rc1' setuptools==65.4.1 wheel --user 32 python3.11 -m pip install -U 'cython<4.0.0rc1' setuptools==65.4.1 wheel --user 33 python3.12 -m pip install -U 'cython<4.0.0rc1' setuptools==65.4.1 wheel --user 34 python3.13 -m pip install -U 'cython<4.0.0rc1' setuptools==65.4.1 wheel --user [all …]
|
| /third_party/grpc/tools/internal_ci/windows/ |
| D | grpc_distribtests_python.bat | 7 @rem http://www.apache.org/licenses/LICENSE-2.0 31 @rem Build all python windows artifacts 32 python tools/run_tests/task_runner.py -f artifact windows python %TASK_RUNNER_EXTRA_FILTERS% -j 4 -… 34 @rem the next step expects to find the artifacts from the previous step in the "input_artifacts" fo… 35 bash -c "rm -rf input_artifacts; mkdir -p input_artifacts; cp -r artifacts/* input_artifacts/ || tr… 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 ar… 39 @rem potentially skip some file names that would clash with linux-created artifacts. 40 bash -c "cp -r input_artifacts/python_*/* artifacts/ || true" 42 @rem TODO(jtattermusch): Here we would normally run python windows distribtests, but currently no s… [all …]
|
| D | grpc_distribtests_csharp.bat | 7 @rem http://www.apache.org/licenses/LICENSE-2.0 33 @rem Install Msys2 zip to avoid crash when using cygwin's zip on grpc-win2016 kokoro workers. 37 curl -sSL --fail -o C:\zip\zip.exe https://storage.googleapis.com/grpc-build-helper/zip-3.0-1-x86_6… 39 zip --version 41 @rem Build all protoc windows artifacts 42 python tools/run_tests/task_runner.py -f artifact windows protoc %TASK_RUNNER_EXTRA_FILTERS% -j 4 -… 44 @rem the next step expects to find the artifacts from the previous step in the "input_artifacts" fo… 45 bash -c "rm -rf input_artifacts; mkdir -p input_artifacts; cp -r artifacts/* input_artifacts/ || tr… 49 @rem (this is required as we only have the windows artifacts at hand) 51 python tools/run_tests/task_runner.py -f package windows csharp nuget -j 2 -x build_packages/sponge… [all …]
|
| /third_party/grpc/tools/run_tests/artifacts/ |
| D | artifact_targets.py | 8 # http://www.apache.org/licenses/LICENSE-2.0 15 """Definition of targets to build artifacts.""" 41 environ["ARTIFACTS_OUT"] = "artifacts/%s" % name 45 docker_args += ["-e", "%s=%s" % (k, v)] 50 "OUTPUT_DIR": "artifacts", 83 environ["ARTIFACTS_OUT"] = os.path.join("..", "artifacts", name) 86 "tools/run_tests/artifacts/run_in_workspace.sh", 89 environ["ARTIFACTS_OUT"] = os.path.join("artifacts", name) 105 _MACOS_COMPAT_FLAG = "-mmacosx-version-min=10.10" 107 _ARCH_FLAG_MAP = {"x86": "-m32", "x64": "-m64"} [all …]
|
| D | package_targets.py | 8 # http://www.apache.org/licenses/LICENSE-2.0 37 docker_args += ["-e", "%s=%s" % (k, v)] 42 "OUTPUT_DIR": "artifacts", 134 del inner_jobs # arg unused as this step simply collects preexisting artifacts 138 "tools/run_tests/artifacts/build_package_ruby.sh", 143 """Collects python eggs and wheels created in the artifact phase""" 147 self.labels = ["package", "python", "linux"] 153 del inner_jobs # arg unused as this step simply collects preexisting artifacts 154 # since the python package build does very little, we can use virtually 155 # any image that has new-enough python, so reusing one of the images used [all …]
|
| D | build_artifact_python.bat | 7 @rem http://www.apache.org/licenses/LICENSE-2.0 15 @rem set path to python 22 python -m pip install --upgrade pip six 23 @rem Ping to a single version to make sure we're building the same artifacts 24 python -m pip install setuptools==69.5.1 wheel==0.43.0 25 python -m pip install --upgrade "cython>=3.0.0" 26 python -m pip install -rrequirements.txt --user 38 mkdir -p %ARTIFACTS_OUT% 41 @rem Set up gRPC Python tools 42 python tools\distrib\python\make_grpcio_tools.py [all …]
|
| /third_party/grpc/tools/bazelify_tests/test/ |
| D | build_artifact_python_linux_x64_cp313.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 16 set -ex 18 # env variable values extracted from PythonArtifact in tools/run_tests/artifacts/artifact_targets.py 19 # TODO(jtattermusch): find a better way of configuring the python artifact build (the current appro… 20 export PYTHON=/opt/python/cp313-cp313/bin/python 21 export PIP=/opt/python/cp313-cp313/bin/pip 26 # Without this python cannot find the c++ compiler 29 export PATH="/opt/rh/devtoolset-10/root/usr/bin:$PATH" 34 mkdir -p artifacts 36 ARTIFACTS_OUT=artifacts tools/run_tests/artifacts/build_artifact_python.sh
|
| D | build_artifact_python_linux_x64_cp39.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 16 set -ex 18 # env variable values extracted from PythonArtifact in tools/run_tests/artifacts/artifact_targets.py 19 # TODO(jtattermusch): find a better way of configuring the python artifact build (the current appro… 20 export PYTHON=/opt/python/cp39-cp39/bin/python 21 export PIP=/opt/python/cp39-cp39/bin/pip 26 # Without this python cannot find the c++ compiler 29 export PATH="/opt/rh/devtoolset-10/root/usr/bin:$PATH" 34 mkdir -p artifacts 36 ARTIFACTS_OUT=artifacts tools/run_tests/artifacts/build_artifact_python.sh
|
| /third_party/grpc/examples/python/observability/csm/ |
| D | Dockerfile.client | 1 FROM python:3.9-slim-bookworm 3 RUN apt-get update -y && apt-get upgrade -y && apt-get install -y build-essential clang curl 7 RUN ln -s /usr/bin/python3 /usr/bin/python 8 RUN mkdir /artifacts 11 RUN tools/bazel build -c dbg //examples/python/observability/csm:csm_greeter_client 12 RUN cp -rL /workdir/bazel-bin/examples/python/observability/csm/csm_greeter_client* /artifacts/ 14 FROM python:3.9-slim-bookworm 16 RUN apt-get update -y \ 17 && apt-get install -y python3 \ 18 && apt-get -y autoremove \ [all …]
|
| D | Dockerfile.server | 1 FROM python:3.9-slim-bookworm 3 RUN apt-get update -y && apt-get upgrade -y && apt-get install -y build-essential clang curl 7 RUN ln -s /usr/bin/python3 /usr/bin/python 8 RUN mkdir /artifacts 11 RUN tools/bazel build -c dbg //examples/python/observability/csm:csm_greeter_server 12 RUN cp -rL /workdir/bazel-bin/examples/python/observability/csm/csm_greeter_server* /artifacts/ 14 FROM python:3.9-slim-bookworm 16 RUN apt-get update -y \ 17 && apt-get install -y python3 \ 18 && apt-get -y autoremove \ [all …]
|
| /third_party/grpc/src/python/grpcio_tests/tests_py3_only/interop/ |
| D | Dockerfile.server | 1 FROM python:3.9-slim-bookworm 3 RUN apt-get update -y && apt-get upgrade -y && apt-get install -y build-essential clang curl 7 RUN ln -s /usr/bin/python3 /usr/bin/python 8 RUN mkdir /artifacts 11 RUN tools/bazel build -c dbg //src/python/grpcio_tests/tests_py3_only/interop:xds_interop_server 12 RUN cp -rL /workdir/bazel-bin/src/python/grpcio_tests/tests_py3_only/interop/xds_interop_server* /a… 18 FROM python:3.9-slim-bookworm 23 RUN apt-get update -y \ 24 && apt-get install -y python3 \ 25 && apt-get -y autoremove \ [all …]
|
| D | Dockerfile.client | 1 FROM python:3.9-slim-bookworm 3 RUN apt-get update -y && apt-get upgrade -y && apt-get install -y build-essential clang curl 7 RUN ln -s /usr/bin/python3 /usr/bin/python 8 RUN mkdir /artifacts 11 RUN tools/bazel build -c dbg //src/python/grpcio_tests/tests_py3_only/interop:xds_interop_client 12 RUN cp -rL /workdir/bazel-bin/src/python/grpcio_tests/tests_py3_only/interop/xds_interop_client* /a… 18 FROM python:3.9-slim-bookworm 23 RUN apt-get update -y \ 24 && apt-get install -y python3 \ 25 && apt-get -y autoremove \ [all …]
|
| /third_party/grpc/examples/cpp/xds/ |
| D | Dockerfile.client | 7 # http://www.apache.org/licenses/LICENSE-2.0 15 FROM python:3.9-slim-bookworm 17 RUN apt-get update -y && apt-get upgrade -y && apt-get install -y build-essential clang curl 21 RUN ln -s /usr/bin/python3 /usr/bin/python 22 RUN mkdir /artifacts 26 RUN cp -rL /workdir/bazel-bin/examples/cpp/xds/xds_greeter_client /artifacts/ 28 FROM python:3.9-slim-bookworm 30 RUN apt-get update \ 31 && apt-get -y upgrade \ 32 && apt-get -y autoremove \ [all …]
|
| D | Dockerfile.server | 7 # http://www.apache.org/licenses/LICENSE-2.0 15 FROM python:3.9-slim-bookworm 17 RUN apt-get update -y && apt-get upgrade -y && apt-get install -y build-essential clang curl 21 RUN ln -s /usr/bin/python3 /usr/bin/python 22 RUN mkdir /artifacts 26 RUN cp -rL /workdir/bazel-bin/examples/cpp/xds/xds_greeter_server /artifacts/ 28 FROM python:3.9-slim-bookworm 30 RUN apt-get update \ 31 && apt-get -y upgrade \ 32 && apt-get -y autoremove \ [all …]
|
| /third_party/grpc/examples/cpp/csm/observability/ |
| D | Dockerfile.client | 7 # http://www.apache.org/licenses/LICENSE-2.0 15 FROM python:3.9-slim-bookworm 17 RUN apt-get update -y && apt-get upgrade -y && apt-get install -y build-essential clang curl 21 RUN ln -s /usr/bin/python3 /usr/bin/python 22 RUN mkdir /artifacts 26 RUN cp -rL /workdir/bazel-bin/examples/cpp/csm/observability/csm_greeter_client /artifacts/ 28 FROM python:3.9-slim-bookworm 30 RUN apt-get update \ 31 && apt-get -y upgrade \ 32 && apt-get -y autoremove \ [all …]
|
| D | Dockerfile.server | 7 # http://www.apache.org/licenses/LICENSE-2.0 15 FROM python:3.9-slim-bookworm 17 RUN apt-get update -y && apt-get upgrade -y && apt-get install -y build-essential clang curl 21 RUN ln -s /usr/bin/python3 /usr/bin/python 22 RUN mkdir /artifacts 26 RUN cp -rL /workdir/bazel-bin/examples/cpp/csm/observability/csm_greeter_server /artifacts/ 28 FROM python:3.9-slim-bookworm 32 RUN apt-get update \ 33 && apt-get -y upgrade \ 34 && apt-get -y autoremove \ [all …]
|
| /third_party/grpc/examples/cpp/csm/ |
| D | Dockerfile.server | 7 # http://www.apache.org/licenses/LICENSE-2.0 15 FROM python:3.9-slim-bookworm 17 RUN apt-get update -y && apt-get upgrade -y && apt-get install -y build-essential clang curl 21 RUN ln -s /usr/bin/python3 /usr/bin/python 22 RUN mkdir /artifacts 26 RUN cp -rL /workdir/bazel-bin/examples/cpp/csm/csm_greeter_server /artifacts/ 28 FROM python:3.9-slim-bookworm 30 RUN apt-get update \ 31 && apt-get -y upgrade \ 32 && apt-get -y autoremove \ [all …]
|
| D | Dockerfile.client | 7 # http://www.apache.org/licenses/LICENSE-2.0 15 FROM python:3.9-slim-bookworm 17 RUN apt-get update -y && apt-get upgrade -y && apt-get install -y build-essential clang curl 21 RUN ln -s /usr/bin/python3 /usr/bin/python 22 RUN mkdir /artifacts 26 RUN cp -rL /workdir/bazel-bin/examples/cpp/csm/csm_greeter_client /artifacts/ 28 FROM python:3.9-slim-bookworm 30 RUN apt-get update \ 31 && apt-get -y upgrade \ 32 && apt-get -y autoremove \ [all …]
|
| /third_party/mesa3d/.gitlab-ci/lava/ |
| D | lava-gitlab-ci.yml | 2 …REGISTRY_IMAGE}/alpine/x86_64_lava_ssh_client:${ALPINE_X86_64_LAVA_SSH_TAG}--${MESA_TEMPLATES_COMM… 5 .lava-test: 10 FDO_CI_CONCURRENT: 6 # should be replaced by per-machine definitions 12 LAVA_HTTP_CACHE_URI: "http://caching-proxy/cache/?uri=" 17 # per-job build artifacts 18 JOB_ROOTFS_OVERLAY_PATH: "${JOB_ARTIFACTS_BASE}/job-rootfs-overlay.tar.gz" 20 LAVA_S3_ARTIFACT_NAME: "mesa-${ARCH}-default-debugoptimized" 21 S3_ARTIFACT_NAME: "mesa-python-ci-artifacts" 28 - !reference [.download_s3, before_script] 30 - . artifacts/setup-test-env.sh [all …]
|
| /third_party/grpc/tools/dockerfile/interoptest/grpc_interop_cxx_xds/ |
| D | Dockerfile.xds_client | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 FROM python:3.9-slim-bookworm 19 RUN apt-get update -y && apt-get upgrade -y && apt-get install -y build-essential clang curl 23 RUN ln -s /usr/bin/python3 /usr/bin/python 24 RUN mkdir /artifacts 28 RUN cp -rL /workdir/bazel-bin/test/cpp/interop/xds_interop_client /artifacts/ 34 FROM python:3.9-slim-bookworm 39 RUN apt-get update \ 40 && apt-get -y upgrade \ 41 && apt-get -y autoremove \ [all …]
|
| D | Dockerfile.xds_server | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 FROM python:3.9-slim-bookworm 19 RUN apt-get update -y && apt-get upgrade -y && apt-get install -y build-essential clang curl 23 RUN ln -s /usr/bin/python3 /usr/bin/python 24 RUN mkdir /artifacts 28 RUN cp -rL /workdir/bazel-bin/test/cpp/interop/xds_interop_server /artifacts/ 34 FROM python:3.9-slim-bookworm 39 RUN apt-get update \ 40 && apt-get -y upgrade \ 41 && apt-get -y autoremove \ [all …]
|
| /third_party/grpc/tools/internal_ci/helper_scripts/ |
| D | check_python_artifacts_size.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 16 # Checks if any of the Python artifacts exceeds a certern size limit since 17 # Pypi has a per-file size limit. 19 set -ex 21 find . -path "*/artifacts/*" -size +80M | egrep '.*' && echo "Found Python artifacts larger than 80…
|
| /third_party/grpc/tools/run_tests/ |
| D | README.md | 3 This directory contains scripts that facilitate building and running tests. We are using python scr… 8 Builds gRPC in given language and runs unit tests. Use `tools/run_tests/run_tests.py --help` for mo… 11 `tools/run_tests/run_tests.py -l python -c dbg` 14 - `--use_docker` Builds a docker container containing all the prerequisites for given language and … 15 - `--build_only` Only build, do not run the tests. 17 …as `ImportError: No module named httplib2`, then you may be missing some Python modules. Install t… 25 Runs tests for cross-platform/cross-language interoperability. For more details, see [Interop tests… 26 The script is also capable of running interop tests for grpc-java and grpc-go, using sources checke… 29 `tools/run_tests/run_interop_tests.py -l python -s c++ --use_docker` (run interop tests with C# cli… 38 See [end-to-end benchmarking documentation](/tools/run_tests/peformance/README.md) for more info. [all …]
|
1234567