From f830eaddf0f51ae44d60bc6455859967ebcbb7e1 Mon Sep 17 00:00:00 2001 From: Anay Wadhera Date: Thu, 6 Jul 2023 16:51:01 -0700 Subject: [PATCH] disable rust ldt by default PiperOrigin-RevId: 546127141 --- .github/workflows/validate.yaml | 2 +- presence/implementation/BUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml index 10485ac3..2583f175 100644 --- a/.github/workflows/validate.yaml +++ b/.github/workflows/validate.yaml @@ -36,7 +36,7 @@ jobs: - name: Build Connections run: CC=clang CXX=clang++ bazel build --check_visibility=false //connections:core --spawn_strategy=standalone - name: Build Presence - run: CC=clang CXX=clang++ bazel build --check_visibility=false //presence --spawn_strategy=standalone --//presence/implementation:enable_rust_ldt=False + run: CC=clang CXX=clang++ bazel build --check_visibility=false //presence --spawn_strategy=standalone build-rust-linux: name: Build Rust on Linux diff --git a/presence/implementation/BUILD b/presence/implementation/BUILD index 2a15aecb..75a624ba 100644 --- a/presence/implementation/BUILD +++ b/presence/implementation/BUILD @@ -21,7 +21,7 @@ licenses(["notice"]) # When not set, LDT encryption will not be available. We won't be able to advertise encrypted BLE4.2 advertisements nor scan for them. bool_flag( name = "enable_rust_ldt", - build_setting_default = True, + build_setting_default = False, ) config_setting(