Merge pull request #5640 from TeBoring/3.7.x-cherrypick
cherrypick changes from master
This commit is contained in:
commit
a73b43593d
@ -1,7 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -x
|
||||
CXXFLAGS_COMMON="-DNDEBUG -mmacosx-version-min=10.9"
|
||||
set -ex
|
||||
CXXFLAGS_COMMON="-std=c++14 -DNDEBUG -mmacosx-version-min=10.9"
|
||||
|
||||
cd github/protobuf
|
||||
./autogen.sh
|
||||
|
@ -7,11 +7,17 @@ pushd $(dirname $0)/../../../..
|
||||
|
||||
export REPO_DIR=protobuf
|
||||
export BUILD_VERSION=`grep -i "version" python/google/protobuf/__init__.py | grep -o "'.*'" | tr -d "'"`
|
||||
export BUILD_COMMIT=v$BUILD_VERSION
|
||||
if [ -z $KOKORO_JOB_NAME ]; then
|
||||
export BUILD_COMMIT=master
|
||||
else
|
||||
export BUILD_COMMIT=`echo "$KOKORO_JOB_NAME" | cut -d '/' -f 3`
|
||||
fi
|
||||
export PLAT=x86_64
|
||||
export UNICODE_WIDTH=32
|
||||
export MACOSX_DEPLOYMENT_TARGET=10.9
|
||||
|
||||
rm -rf artifacts/
|
||||
rm -rf multibuild/
|
||||
mkdir artifacts
|
||||
export ARTIFACT_DIR=$(pwd)/artifacts
|
||||
|
||||
|
@ -6,6 +6,8 @@ function pre_build {
|
||||
# Runs in the root directory of this repository.
|
||||
pushd protobuf
|
||||
|
||||
yum install -y devtoolset-2-libatomic-devel
|
||||
|
||||
# Build protoc
|
||||
./autogen.sh
|
||||
./configure
|
||||
|
@ -7,17 +7,23 @@ pushd $(dirname $0)/../../../..
|
||||
|
||||
export REPO_DIR=protobuf
|
||||
export BUILD_VERSION=`grep -i "version" python/google/protobuf/__init__.py | grep -o "'.*'" | tr -d "'"`
|
||||
export BUILD_COMMIT=v$BUILD_VERSION
|
||||
if [ -z $KOKORO_JOB_NAME ]; then
|
||||
export BUILD_COMMIT=master
|
||||
else
|
||||
export BUILD_COMMIT=`echo "$KOKORO_JOB_NAME" | cut -d '/' -f 3`
|
||||
fi
|
||||
export PLAT=x86_64
|
||||
export UNICODE_WIDTH=32
|
||||
export MACOSX_DEPLOYMENT_TARGET=10.9
|
||||
export TRAVIS_OS_NAME="osx"
|
||||
|
||||
rm -rf artifacts/
|
||||
rm -rf multibuild/
|
||||
mkdir artifacts
|
||||
export ARTIFACT_DIR=$(pwd)/artifacts
|
||||
|
||||
git clone https://github.com/matthew-brett/multibuild.git
|
||||
cp kokoro/release/python/linux/config.sh config.sh
|
||||
cp kokoro/release/python/macos/config.sh config.sh
|
||||
|
||||
OLD_PATH=$PATH
|
||||
|
||||
|
48
kokoro/release/python/macos/config.sh
Normal file
48
kokoro/release/python/macos/config.sh
Normal file
@ -0,0 +1,48 @@
|
||||
# Define custom utilities
|
||||
# Test for OSX with [ -n "$IS_OSX" ]
|
||||
|
||||
function pre_build {
|
||||
# Any stuff that you need to do before you start building the wheels
|
||||
# Runs in the root directory of this repository.
|
||||
pushd protobuf
|
||||
|
||||
# Build protoc
|
||||
./autogen.sh
|
||||
./configure
|
||||
|
||||
CXXFLAGS="-std=c++14 -fPIC -g -O2" ./configure
|
||||
make -j8
|
||||
|
||||
# Generate python dependencies.
|
||||
pushd python
|
||||
python setup.py build_py
|
||||
popd
|
||||
|
||||
popd
|
||||
}
|
||||
|
||||
function bdist_wheel_cmd {
|
||||
# Builds wheel with bdist_wheel, puts into wheelhouse
|
||||
#
|
||||
# It may sometimes be useful to use bdist_wheel for the wheel building
|
||||
# process. For example, versioneer has problems with versions which are
|
||||
# fixed with bdist_wheel:
|
||||
# https://github.com/warner/python-versioneer/issues/121
|
||||
local abs_wheelhouse=$1
|
||||
|
||||
# Modify build version
|
||||
pwd
|
||||
ls
|
||||
python setup.py bdist_wheel --cpp_implementation --compile_static_extension
|
||||
cp dist/*.whl $abs_wheelhouse
|
||||
}
|
||||
|
||||
function build_wheel {
|
||||
build_wheel_cmd "bdist_wheel_cmd" $@
|
||||
}
|
||||
|
||||
function run_tests {
|
||||
# Runs tests on installed distribution from an empty directory
|
||||
python --version
|
||||
python -c "from google.protobuf.pyext import _message;"
|
||||
}
|
Loading…
Reference in New Issue
Block a user