From 6ab7316e7fa2abc068fc32b7e8df5c77f7962372 Mon Sep 17 00:00:00 2001 From: v-pratap Date: Wed, 24 Dec 2025 10:27:37 +0000 Subject: [PATCH 1/2] ci: exclude few storage integration tests --- ci/cloudbuild/builds/integration-production.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ci/cloudbuild/builds/integration-production.sh b/ci/cloudbuild/builds/integration-production.sh index 66ca4496d87fa..548f6608e5163 100755 --- a/ci/cloudbuild/builds/integration-production.sh +++ b/ci/cloudbuild/builds/integration-production.sh @@ -37,6 +37,11 @@ excluded_rules=( "-//google/cloud/storage/examples:storage_service_account_samples" # This sample can be very long running due to creation time of AnywhereCache "-//google/cloud/storagecontrol:v2_samples_storage_control_anywhere_cache_samples" + # TODO(#15845): Re-enable these tests once the issue is resolved. + "-//google/cloud/storage/examples:storage_bucket_iam_samples" + "-//google/cloud/storage/tests:bucket_acl_integration_test" + "-//google/cloud/storage/tests:bucket_integration_test" + "-//google/cloud/storage/tests:default_object_acl_integration_test" ) io::log_h2 "Running the integration tests against prod" From 2e13ec94e590ec5d298720e6e339772e9c933807 Mon Sep 17 00:00:00 2001 From: v-pratap Date: Fri, 26 Dec 2025 06:18:45 +0000 Subject: [PATCH 2/2] add more tests to skip --- ci/cloudbuild/builds/integration-production.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/ci/cloudbuild/builds/integration-production.sh b/ci/cloudbuild/builds/integration-production.sh index 548f6608e5163..f79fddb497bb0 100755 --- a/ci/cloudbuild/builds/integration-production.sh +++ b/ci/cloudbuild/builds/integration-production.sh @@ -39,9 +39,12 @@ excluded_rules=( "-//google/cloud/storagecontrol:v2_samples_storage_control_anywhere_cache_samples" # TODO(#15845): Re-enable these tests once the issue is resolved. "-//google/cloud/storage/examples:storage_bucket_iam_samples" - "-//google/cloud/storage/tests:bucket_acl_integration_test" - "-//google/cloud/storage/tests:bucket_integration_test" - "-//google/cloud/storage/tests:default_object_acl_integration_test" + "-//google/cloud/storage/tests:bucket_acl_integration_test-default" + "-//google/cloud/storage/tests:bucket_acl_integration_test-grpc-metadata" + "-//google/cloud/storage/tests:bucket_integration_test-default" + "-//google/cloud/storage/tests:bucket_integration_test-grpc-metadata" + "-//google/cloud/storage/tests:default_object_acl_integration_test-default" + "-//google/cloud/storage/tests:default_object_acl_integration_test-grpc-metadata" ) io::log_h2 "Running the integration tests against prod"