-
Notifications
You must be signed in to change notification settings - Fork 1.6k
CMake grpc upgrade to 1.44.0 #9488
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
d92db19
Upgrade grpc and abseil
wu-hui edbf7c1
Fixes
wu-hui 0702f75
Pick up new patch version to fix int128.h warning.
wu-hui 4ba0eb8
Full upgrade
wu-hui 72779cb
CMake grpc upgrade to 1.44.0
wu-hui 6492a01
Upgrade googletest while we are at it
wu-hui daf25bc
Merge branch 'master' into wuandy/GrpcCmake144
wu-hui 9d3916e
Revert spm change.
wu-hui 2a4a082
Merge branch 'master' into wuandy/GrpcCmake144
wu-hui 319576e
Revert googletest.
wu-hui d41b7f5
Merge branch 'master' into wuandy/GrpcCmake144
wu-hui ecbaef1
Always use latest googletest
wu-hui 9d6a5fa
Merge branch 'master' into wuandy/GrpcCmake144
wu-hui 30b9d8e
Move sanitizers to Linux
wu-hui 3be9350
Add macos-latest as well
wu-hui b62ce22
macos latest
wu-hui 3d32085
Mac 12
wu-hui c936018
Move to ubuntu
wu-hui 5f737bb
Fix license
wu-hui 8dc8de9
Add bug
wu-hui a871d06
Merge remote-tracking branch 'origin/wuandy/GrpcCmake144' into wuandy…
wu-hui File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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 |
---|---|---|
|
@@ -39,4 +39,5 @@ include(leveldb) | |
include(libfuzzer) | ||
include(nanopb) | ||
include(protobuf) | ||
include(re2) | ||
include(zlib) |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,39 @@ | ||
# 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. | ||
|
||
include(ExternalProject) | ||
|
||
if(TARGET RE2) | ||
return() | ||
endif() | ||
|
||
# Based on https://github.com/grpc/grpc/blob/v1.44.0/bazel/grpc_deps.bzl | ||
set(commit 8e08f47b11b413302749c0d8b17a1c94777495d5) | ||
|
||
ExternalProject_Add( | ||
re2 | ||
|
||
DOWNLOAD_DIR ${FIREBASE_DOWNLOAD_DIR} | ||
DOWNLOAD_NAME re2-${commit}.tar.gz | ||
URL https://github.com/google/re2/archive/${commit}.tar.gz | ||
URL_HASH SHA256=319a58a58d8af295db97dfeecc4e250179c5966beaa2d842a82f0a013b6a239b | ||
|
||
PREFIX ${PROJECT_BINARY_DIR} | ||
SOURCE_DIR ${PROJECT_BINARY_DIR}/src/re2 | ||
|
||
CONFIGURE_COMMAND "" | ||
BUILD_COMMAND "" | ||
INSTALL_COMMAND "" | ||
TEST_COMMAND "" | ||
) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.