Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -241,18 +241,18 @@ build:compile-time-options --@envoy//source/extensions/filters/http/kill_request

common:fips-common --test_tag_filters=-nofips
common:fips-common --build_tag_filters=-nofips
common:fips-common --//bazel:fips=True
common:fips-common --@envoy//bazel:fips=True

# BoringSSL FIPS
common:boringssl-fips --config=fips-common
common:boringssl-fips --//bazel:ssl=@boringssl_fips//:ssl
common:boringssl-fips --//bazel:crypto=@boringssl_fips//:crypto
common:boringssl-fips --@envoy//bazel:ssl=@boringssl_fips//:ssl
common:boringssl-fips --@envoy//bazel:crypto=@boringssl_fips//:crypto

# AWS-LC FIPS
common:aws-lc-fips --config=fips-common
common:aws-lc-fips --//bazel:ssl=@aws_lc//:ssl
common:aws-lc-fips --//bazel:crypto=@aws_lc//:crypto
common:aws-lc-fips --//bazel:http3=False
common:aws-lc-fips --@envoy//bazel:ssl=@aws_lc//:ssl
common:aws-lc-fips --@envoy//bazel:crypto=@aws_lc//:crypto
common:aws-lc-fips --@envoy//bazel:http3=False


#############################################################################
Expand Down Expand Up @@ -286,7 +286,7 @@ build:asan-common --test_tag_filters=-no_san
# Flag undefined was dropped from both the lines to allow CI/ASAN to pass. # unique
build:asan-common --copt -fsanitize=address # unique
build:asan-common --linkopt -fsanitize=address # unique
# vptr and function sanitizer are enabled in asan if it is set up via bazel/setup_clang.sh.
# vptr and function sanitizer are enabled in asan when using --config=clang.
build:asan-common --copt -fno-sanitize=vptr,function
build:asan-common --linkopt -fno-sanitize=vptr,function
build:asan-common --copt -DADDRESS_SANITIZER=1
Expand Down
19 changes: 19 additions & 0 deletions .github/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@ checks:
required: true
on-run:
- mobile-perf
mobile-python:
name: Mobile/Python
required: true
on-run:
- mobile-python
mobile-release-validation:
name: Mobile/Release validation
required: true
Expand Down Expand Up @@ -320,6 +325,18 @@ run:
- mobile/.bazelrc
- mobile/**/*
- tools/code_format/check_format.py
mobile-python:
paths:
- .bazelrc
- .bazelversion
- .github/config.yml
- .github/workflows/mobile-python.yml
- bazel/external/quiche.BUILD
- bazel/repositories.bzl
- bazel/repository_locations.bzl
- mobile/.bazelrc
- mobile/**/*
- tools/code_format/check_format.py
mobile-release-validation:
paths:
- .bazelrc
Expand Down Expand Up @@ -386,6 +403,8 @@ run:
- .bazelrc
- .bazelversion
- .github/config.yml
- .github/workflows/envoy-publish.yml
- .github/workflows/_publish_verify.yml
- api/**/*
- bazel/**/*
- ci/**/*
Expand Down
4 changes: 2 additions & 2 deletions bazel/repositories.bzl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

ENVOY_COMMIT = "9022eb6f6f9de8e4a9ea7b902a5f3777edd42de1"
ENVOY_SHA = "ef716bf97e377cdbf0bec14b1ac30ef64cb7dbd29f4b0a9a3ed913a3c34848b7"
ENVOY_COMMIT = "2cf3be83ecde2b37366e5e3f245f67ffd017ee5f"
ENVOY_SHA = "5b3094096dd7cf047c2ae84f7a60e70caa567cfcbcede4c50e03a6544779c1f0"

HDR_HISTOGRAM_C_VERSION = "0.11.8" # June 18th, 2025
HDR_HISTOGRAM_C_SHA = "bb95351a6a8b242dc9be1f28562761a84d4cf0a874ffc90a9b630770a6468e94"
Expand Down
Loading
Loading