Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
6eeab294
Unverified
Commit
6eeab294
authored
Feb 27, 2019
by
Yilun Chong
Committed by
GitHub
Feb 27, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5787 from BSBandme/3.7.x-fix
Cherry-pick fixing for mac tests after kokoro updates
parents
0aad5339
60302094
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
6 deletions
+13
-6
Makefile.am
benchmarks/Makefile.am
+2
-2
prepare_build_macos_rc
kokoro/macos/prepare_build_macos_rc
+9
-3
setup.py
python/setup.py
+1
-0
tests.sh
tests.sh
+1
-1
No files found.
benchmarks/Makefile.am
View file @
6eeab294
...
...
@@ -90,8 +90,8 @@ $(benchmarks_protoc_outputs_proto2_header): protoc_middleman2
initialize_submodule
:
oldpwd
=
`
pwd
`
cd
$(top_srcdir)
&&
git submodule update
--init
-r
third_party/benchmark
cd
$(top_srcdir)
/
third_party/benchmark
&&
cmake
-DCMAKE_BUILD_TYPE
=
Release
&&
make
cd
$(top_srcdir)
&&
git submodule update
--init
-r
third_party/benchmark
&&
\
cd
third_party/benchmark
&&
cmake
-DCMAKE_BUILD_TYPE
=
Release
&&
make
cd
$$
oldpwd
touch
initialize_submodule
...
...
kokoro/macos/prepare_build_macos_rc
View file @
6eeab294
...
...
@@ -5,7 +5,10 @@
##
# Select Xcode version
export
DEVELOPER_DIR
=
/Applications/Xcode_9.1.app/Contents/Developer
# Remember to udpate the Xcode version when xcode_9.4.1 is not available.
# If xcode is not available, it will probaly encounter the failure for
# "autom4te: need GNU m4 1.4 or later: /usr/bin/m4""
export
DEVELOPER_DIR
=
/Applications/Xcode_9.4.1.app/Contents/Developer
##
# Select C/C++ compilers
...
...
@@ -18,8 +21,11 @@ export CXX=g++
ruby
-e
"
$(
curl
-fsSL
https://raw.githubusercontent.com/Homebrew/install/master/install
)
"
source
$HOME
/.rvm/scripts/rvm
brew uninstall node icu4c
brew
install
gflags gpg gpg2 node pcre ruby
brew uninstall node icu4c cmake
brew prune
brew
install
gflags gpg gpg2 node pcre ruby cmake
sudo chown
-R
$(
whoami
)
/usr/local
brew postinstall node
##
# Install Tox
...
...
python/setup.py
View file @
6eeab294
...
...
@@ -188,6 +188,7 @@ if __name__ == '__main__':
if
sys
.
platform
==
'darwin'
:
extra_compile_args
.
append
(
"-Wno-shorten-64-to-32"
);
extra_compile_args
.
append
(
"-Wno-deprecated-register"
);
# https://developer.apple.com/documentation/xcode_release_notes/xcode_10_release_notes
# C++ projects must now migrate to libc++ and are recommended to set a
...
...
tests.sh
View file @
6eeab294
...
...
@@ -226,7 +226,7 @@ build_objectivec_tvos_release() {
build_objectivec_cocoapods_integration
()
{
# Update pod to the latest version.
gem
install
cocoapods
--no
-ri
--no-rdoc
gem
install
cocoapods
--no
_document
objectivec/Tests/CocoaPods/run_tests.sh
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment