forked from grpc/grpc
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
try add python build artifact example
- Loading branch information
1 parent
befe290
commit 22d057e
Showing
2 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
tools/bazelify_tests/test/build_artifact_python_linux_x64_cp311.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/bin/bash | ||
# Copyright 2023 The gRPC Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
set -ex | ||
|
||
# env variable values extracted from PythonArtifact in tools/run_tests/artifacts/artifact_targets.py | ||
# TODO(jtattermusch): find a better way of configuring the python artifact build (the current approach mostly serves as a demonstration) | ||
export PYTHON=/opt/python/cp311-cp311/bin/python | ||
export PIP=/opt/python/cp311-cp311/bin/pip | ||
export GRPC_SKIP_PIP_CYTHON_UPGRADE=TRUE | ||
export GRPC_RUN_AUDITWHEEL_REPAIR=TRUE | ||
export GRPC_BUILD_GRPCIO_TOOLS_DEPENDENTS=TRUE | ||
|
||
# set build parallelism to fit the machine configuration of bazelified tests RBE pool. | ||
export GRPC_PYTHON_BUILD_EXT_COMPILER_JOBS=8 | ||
|
||
mkdir -p artifacts | ||
|
||
ARTIFACTS_OUT=artifacts tools/run_tests/artifacts/build_artifact_python.sh |