From 22532c537959149599e79df29808176345784cc1 Mon Sep 17 00:00:00 2001 From: Googler Date: Fri, 5 Nov 2021 08:10:25 -0700 Subject: [PATCH] Fix presubmits errors introduced by wrong flags The flags for the cc_shared_library tests were not correct. RELNOTES:none PiperOrigin-RevId: 407824952 Change-Id: Ibd66ca918b0ea75587f5807742f63bb23267602b --- .bazelci/presubmit.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml index a7e4da0d..221d4dcc 100644 --- a/.bazelci/presubmit.yml +++ b/.bazelci/presubmit.yml @@ -52,13 +52,13 @@ tasks: - "//examples/test_cc_shared_library/diamond_inheritance/..." build_flags: - "--experimental_cc_shared_library" - - "--//examples:incompatible_link_once=True" - - "--//examples:enable_permissions_check=True" + - "--experimental_link_static_libraries_once" + - "--experimental_enable_target_export_check" test_flags: - "--test_timeout=120" - "--experimental_cc_shared_library" - - "--//examples:incompatible_link_once=True" - - "--//examples:enable_permissions_check=True" + - "--experimental_link_static_libraries_once" + - "--experimental_enable_target_export_check" test_targets: - "//examples/test_cc_shared_library/..." - "//examples/test_cc_shared_library/diamond_inheritance/..."