diff --git a/.bazelrc b/.bazelrc index 66892483690ac..d59e608685823 100644 --- a/.bazelrc +++ b/.bazelrc @@ -180,7 +180,7 @@ build:coverage --define=dynamic_link_tests=true build:coverage --define=ENVOY_CONFIG_COVERAGE=1 build:coverage --cxxopt="-DENVOY_CONFIG_COVERAGE=1" build:coverage --coverage_support=@envoy//bazel/coverage:coverage_support -build:coverage --test_env=CC_CODE_COVERAGE_SCRIPT=external/envoy/bazel/coverage/collect_cc_coverage.sh +build:coverage --test_env=CC_CODE_COVERAGE_SCRIPT=bazel/coverage/collect_cc_coverage.sh build:coverage --test_env=HEAPCHECK= build:coverage --combined_report=lcov build:coverage --strategy=TestRunner=sandboxed,local @@ -381,6 +381,7 @@ build:windows --define tcmalloc=disabled build:windows --define wasm=disabled build:windows --define manual_stamp=manual_stamp build:windows --cxxopt="/std:c++17" +build:windows --output_groups=+pdb_file # TODO(wrowe,sunjayBhatia): Resolve bugs upstream in curl and rules_foreign_cc # See issue https://github.com/bazelbuild/rules_foreign_cc/issues/301 diff --git a/.bazelversion b/.bazelversion index 9f2e85218f69a..4caf2682eddd8 100644 --- a/.bazelversion +++ b/.bazelversion @@ -1 +1 @@ -6.0.0-pre.20220706.4 +6.0.0rc4 diff --git a/bazel/repository_locations.bzl b/bazel/repository_locations.bzl index a875f9e0a133f..458d365909d0a 100644 --- a/bazel/repository_locations.bzl +++ b/bazel/repository_locations.bzl @@ -1380,6 +1380,19 @@ REPOSITORY_LOCATIONS_SPEC = dict( release_date = "2022-03-30", cpe = "N/A", ), + rules_license = dict( + project_name = "rules_license", + project_desc = "Bazel rules for checking open source licenses", + project_url = "https://github.com/bazelbuild/rules_license", + version = "0.0.3", + sha256 = "00ccc0df21312c127ac4b12880ab0f9a26c1cff99442dc6c5a331750360de3c3", + urls = ["https://github.com/bazelbuild/rules_license/releases/download/{version}/rules_license-{version}.tar.gz"], + use_category = ["build", "dataplane_core", "controlplane"], + release_date = "2022-05-28", + cpe = "N/A", + license = "Apache-2.0", + license_url = "https://github.com/bazelbuild/rules_license/blob/{version}/LICENSE", + ), ) def _compiled_protoc_deps(locations, versions):