Skip to content

Commit 2d9d437

Browse files
committed
Revert "build faster"
This reverts commit 888a152.
1 parent ac76227 commit 2d9d437

File tree

3 files changed

+78
-1
lines changed

3 files changed

+78
-1
lines changed

bazel/repositories_extra.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ PYTHON_MINOR_VERSION = _python_minor_version(PYTHON_VERSION)
1515
# Envoy deps that rely on a first stage of dependency loading in envoy_dependencies().
1616
def envoy_dependencies_extra(
1717
python_version = PYTHON_VERSION,
18-
ignore_root_user_error = True):
18+
ignore_root_user_error = False):
1919
emsdk_deps()
2020
raze_fetch_remote_crates()
2121
wasmtime_fetch_remote_crates()

ci/do_ci.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -563,6 +563,10 @@ case $CI_TARGET in
563563
echo "bazel fastbuild build with contrib extensions and tests..."
564564
echo "Building..."
565565
bazel_contrib_binary_build fastbuild
566+
echo "Testing ${TEST_TARGETS[*]}"
567+
bazel test "${BAZEL_BUILD_OPTIONS[@]}" \
568+
-c fastbuild \
569+
"${TEST_TARGETS[@]}"
566570
;;
567571

568572
distribution)

contrib/contrib_build_config.bzl

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,58 @@ CONTRIB_EXTENSIONS = {
44
# Compression
55
#
66

7+
"envoy.compression.qatzip.compressor": "//contrib/qat/compression/qatzip/compressor/source:config",
8+
"envoy.compression.qatzstd.compressor": "//contrib/qat/compression/qatzstd/compressor/source:config",
9+
10+
#
11+
# HTTP filters
12+
#
13+
"envoy.filters.http.checksum": "//contrib/checksum/filters/http/source:config",
14+
"envoy.filters.http.dynamo": "//contrib/dynamo/filters/http/source:config",
15+
"envoy.filters.http.golang": "//contrib/golang/filters/http/source:config",
16+
"envoy.filters.http.language": "//contrib/language/filters/http/source:config_lib",
17+
"envoy.filters.http.squash": "//contrib/squash/filters/http/source:config",
18+
"envoy.filters.http.sxg": "//contrib/sxg/filters/http/source:config",
19+
20+
#
21+
# Network filters
22+
#
23+
24+
"envoy.filters.network.client_ssl_auth": "//contrib/client_ssl_auth/filters/network/source:config",
25+
"envoy.filters.network.kafka_broker": "//contrib/kafka/filters/network/source/broker:config_lib",
26+
"envoy.filters.network.kafka_mesh": "//contrib/kafka/filters/network/source/mesh:config_lib",
27+
"envoy.filters.network.mysql_proxy": "//contrib/mysql_proxy/filters/network/source:config",
28+
"envoy.filters.network.postgres_proxy": "//contrib/postgres_proxy/filters/network/source:config",
29+
"envoy.filters.network.rocketmq_proxy": "//contrib/rocketmq_proxy/filters/network/source:config",
30+
"envoy.filters.network.generic_proxy": "//contrib/generic_proxy/filters/network/source:config",
31+
"envoy.filters.network.golang": "//contrib/golang/filters/network/source:config",
32+
33+
#
34+
# Sip proxy
35+
#
36+
37+
"envoy.filters.network.sip_proxy": "//contrib/sip_proxy/filters/network/source:config",
38+
"envoy.filters.sip.router": "//contrib/sip_proxy/filters/network/source/router:config",
39+
40+
#
41+
# Private key providers
42+
#
43+
44+
"envoy.tls.key_providers.cryptomb": "//contrib/cryptomb/private_key_providers/source:config",
45+
"envoy.tls.key_providers.qat": "//contrib/qat/private_key_providers/source:config",
46+
47+
#
48+
# Socket interface extensions
49+
#
50+
51+
"envoy.bootstrap.vcl": "//contrib/vcl/source:config",
52+
53+
#
54+
# Input matchers
55+
#
56+
57+
"envoy.matching.input_matchers.hyperscan": "//contrib/hyperscan/matching/input_matchers/source:config",
58+
759
#
860
# Connection Balance extensions
961
#
@@ -14,4 +66,25 @@ CONTRIB_EXTENSIONS = {
1466
# Regex engines
1567
#
1668

69+
"envoy.regex_engines.hyperscan": "//contrib/hyperscan/regex_engines/source:config",
70+
71+
#
72+
# Extensions for generic proxy
73+
#
74+
"envoy.filters.generic.router": "//contrib/generic_proxy/filters/network/source/router:config",
75+
"envoy.generic_proxy.codecs.dubbo": "//contrib/generic_proxy/filters/network/source/codecs/dubbo:config",
76+
"envoy.generic_proxy.codecs.http1": "//contrib/generic_proxy/filters/network/source/codecs/http1:config",
77+
"envoy.generic_proxy.codecs.kafka": "//contrib/generic_proxy/filters/network/source/codecs/kafka:config",
78+
79+
#
80+
# xDS delegates
81+
#
82+
83+
"envoy.xds_delegates.kv_store": "//contrib/config/source:kv_store_xds_delegate",
84+
85+
#
86+
# cluster specifier plugin
87+
#
88+
89+
"envoy.router.cluster_specifier_plugin.golang": "//contrib/golang/router/cluster_specifier/source:config",
1790
}

0 commit comments

Comments
 (0)