Skip to content

Commit da80568

Browse files
authored
ci(otel): add ABI dumps (#12747)
1 parent 28aeb61 commit da80568

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
Binary file not shown.

ci/cloudbuild/builds/check-api.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,12 @@ 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__"
34+
readonly ENABLED_FEATURES="__ga_libraries__,opentelemetry"
3535
mapfile -t library_list < <(cmake -DCMAKE_MODULE_PATH="${PWD}/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" "oauth2")
38+
# This is a GA library, not included in __ga_libraries__
39+
library_list+=("opentelemetry")
3840
fi
3941

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

0 commit comments

Comments
 (0)