Skip to content

Commit 5f18504

Browse files
committed
update ci features
1 parent 156245e commit 5f18504

File tree

6 files changed

+7
-2
lines changed

6 files changed

+7
-2
lines changed

ci/cloudbuild/builds/check-api.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,13 @@ if [ "${GOOGLE_CLOUD_CPP_CHECK_API:-}" ]; then
3131
readonly ENABLED_FEATURES="${GOOGLE_CLOUD_CPP_CHECK_API}"
3232
IFS=',' read -ra library_list <<<"${GOOGLE_CLOUD_CPP_CHECK_API}"
3333
else
34-
readonly ENABLED_FEATURES="__ga_libraries__,opentelemetry"
34+
readonly ENABLED_FEATURES="__ga_libraries__,opentelemetry,universe_domain"
3535
mapfile -t library_list < <(cmake -P cmake/print-ga-libraries.cmake 2>&1)
3636
# These libraries are not "features", but they are part of the public API
3737
library_list+=("common" "grpc_utils")
3838
# This is a GA library, not included in __ga_libraries__
3939
library_list+=("opentelemetry")
40+
library_list+=("universe_domain")
4041
fi
4142

4243
# abi-dumper wants us to use -Og, but that causes bogus warnings about

ci/cloudbuild/builds/cmake-install.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ expected_dirs+=(
164164
./lib64/cmake/google_cloud_cpp_rest_protobuf_internal
165165
./lib64/cmake/google_cloud_cpp_storage_grpc
166166
./lib64/cmake/google_cloud_cpp_storage_grpc_mocks
167+
./lib64/cmake/google_cloud_cpp_universe_domain
167168
./lib64/pkgconfig
168169
)
169170

ci/cloudbuild/builds/lib/features.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ function features::_internal_extra() {
6565
local list=(
6666
experimental-bigquery_rest
6767
opentelemetry
68+
universe_domain
6869
)
6970
printf "%s\n" "${list[@]}"
7071
}

ci/cloudbuild/builds/publish-docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ elif [[ "${LIBRARIES}" == "all_bar_compute" ]]; then
3535
ENABLED_FEATURES="${ENABLED_FEATURES},-compute"
3636
else
3737
mapfile -t FEATURE_LIST < <(printf '%s' "${LIBRARIES}")
38-
ENABLED_FEATURES="compute"
38+
ENABLED_FEATURES="compute,universe_domain"
3939
fi
4040

4141
doc_args=(

ci/lib/shard.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ readonly STORAGE_SHARD=(
6969
readonly TOOLS_SHARD=(
7070
generator
7171
docfx
72+
universe_domain
7273
)
7374

7475
function shard::cmake_features() {

google/cloud/compute/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ operations = [":google_cloud_cpp_compute_" + d.replace("/v1/", "") for d in oper
3838
tags = ["integration-test"],
3939
deps = [
4040
":google_cloud_cpp_compute_" + sample[0:sample.find("/v")],
41+
"//:experimental-universe_domain",
4142
"//google/cloud/testing_util:google_cloud_cpp_testing_private",
4243
],
4344
) for sample in glob([d + "samples/*.cc" for d in service_dirs + operation_service_dirs])]

0 commit comments

Comments
 (0)