2022-04-08 16:36:07 +00:00
|
|
|
#!/bin/bash -eu
|
|
|
|
# Copyright 2022 Google LLC
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2022-10-15 20:36:02 +00:00
|
|
|
BAZEL_FLAGS="-c dbg"
|
|
|
|
if [[ $CFLAGS = *sanitize=address* ]]
|
|
|
|
then
|
|
|
|
BAZEL_FLAGS="$BAZEL_FLAGS --config=asan"
|
|
|
|
fi
|
|
|
|
|
2022-04-08 16:36:07 +00:00
|
|
|
# Build protoc with default options.
|
|
|
|
unset CFLAGS CXXFLAGS
|
2022-10-15 20:36:02 +00:00
|
|
|
cd $SRC/protobuf
|
|
|
|
bazel build $BAZEL_FLAGS //:protoc @upb//python/dist:binary_wheel
|
|
|
|
PROTOC=$(realpath bazel-bin/protoc)
|
2022-08-13 21:33:21 +00:00
|
|
|
|
2022-10-15 20:36:02 +00:00
|
|
|
# Install the protobuf python runtime.
|
|
|
|
mkdir $SRC/wheels
|
|
|
|
find -L bazel-out -name 'protobuf*.whl' -exec mv '{}' $SRC/wheels ';'
|
|
|
|
pip3 install -vvv --no-index --find-links $SRC/wheels protobuf
|
2022-04-08 16:36:07 +00:00
|
|
|
|
|
|
|
# Compile test protos with protoc.
|
|
|
|
cd $SRC/
|
2022-10-15 20:36:02 +00:00
|
|
|
$PROTOC --python_out=. --proto_path=. test-full.proto
|
2022-04-08 16:36:07 +00:00
|
|
|
|
|
|
|
# Build fuzzers in $OUT.
|
|
|
|
for fuzzer in $(find $SRC -name 'fuzz_*.py'); do
|
|
|
|
compile_python_fuzzer $fuzzer
|
|
|
|
done
|