Merge pull request #15382 from adelez/foundry_integration

Apply Wframe-larger-than flag to opt builds only
pull/15429/head
adelez 7 years ago committed by GitHub
commit 3fd27cea76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      bazel/grpc_deps.bzl
  2. 3
      tools/bazel.rc
  3. 4
      tools/internal_ci/linux/grpc_ubsan_on_foundry.sh

@ -130,12 +130,12 @@ def grpc_deps():
if "com_github_bazelbuild_bazeltoolchains" not in native.existing_rules(): if "com_github_bazelbuild_bazeltoolchains" not in native.existing_rules():
native.http_archive( native.http_archive(
name = "com_github_bazelbuild_bazeltoolchains", name = "com_github_bazelbuild_bazeltoolchains",
strip_prefix = "bazel-toolchains-44200e0c026d86c53470d107b3697a3e46469c43", strip_prefix = "bazel-toolchains-09c850dbb8e785ded3d23a7003e9a0168fe1fb2f",
urls = [ urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/archive/44200e0c026d86c53470d107b3697a3e46469c43.tar.gz", "https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/archive/09c850dbb8e785ded3d23a7003e9a0168fe1fb2f.tar.gz",
"https://github.com/bazelbuild/bazel-toolchains/archive/44200e0c026d86c53470d107b3697a3e46469c43.tar.gz", "https://github.com/bazelbuild/bazel-toolchains/archive/09c850dbb8e785ded3d23a7003e9a0168fe1fb2f.tar.gz",
], ],
sha256 = "699b55a6916c687f4b7dc092dbbf5f64672cde0dc965f79717735ec4e5416556", sha256 = "08e521cf2d0998e3d27a16c2e2542ebf4d3857b3ddadcfd145d128140754d7bd",
) )
# TODO: move some dependencies from "grpc_deps" here? # TODO: move some dependencies from "grpc_deps" here?

@ -1,6 +1,7 @@
build --client_env=CC=clang build --client_env=CC=clang
build --copt -DGRPC_BAZEL_BUILD build --copt -DGRPC_BAZEL_BUILD
build --copt -Wframe-larger-than=16384
build:opt --copt -Wframe-larger-than=16384
build:asan --strip=never build:asan --strip=never
build:asan --copt -fsanitize-coverage=edge build:asan --copt -fsanitize-coverage=edge

@ -50,13 +50,13 @@ source tools/internal_ci/helper_scripts/prepare_build_linux_rc
--strategy=Closure=remote \ --strategy=Closure=remote \
--genrule_strategy=remote \ --genrule_strategy=remote \
--experimental_strict_action_env=true \ --experimental_strict_action_env=true \
--experimental_remote_platform_override='properties:{name:"container-image" value:"docker://gcr.io/cloud-marketplace/google/rbe-debian8@sha256:b2d946c1ddc20af250fe85cf98bd648ac5519131659f7c36e64184b433175a33" }' \ --experimental_remote_platform_override='properties:{name:"container-image" value:"docker://gcr.io/cloud-marketplace/google/rbe-debian8@sha256:1ede2a929b44d629ec5abe86eee6d7ffea1d5a4d247489a8867d46cfde3e38bd" }' \
--define GRPC_PORT_ISOLATED_RUNTIME=1 \ --define GRPC_PORT_ISOLATED_RUNTIME=1 \
--copt=-gmlt \ --copt=-gmlt \
--strip=never \ --strip=never \
--copt=-fsanitize=undefined \ --copt=-fsanitize=undefined \
--linkopt=-fsanitize=undefined \ --linkopt=-fsanitize=undefined \
--crosstool_top=@com_github_bazelbuild_bazeltoolchains//configs/experimental/debian8_clang/0.3.0/bazel_0.10.0/ubsan:ubsan_experimental_toolchain \ --crosstool_top=@com_github_bazelbuild_bazeltoolchains//configs/experimental/debian8_clang/0.3.0/bazel_0.12.0/ubsan:toolchain \
-- //test/... || FAILED="true" -- //test/... || FAILED="true"
# Sleep to let ResultStore finish writing results before querying # Sleep to let ResultStore finish writing results before querying

Loading…
Cancel
Save