From deb7580bf339fc308a422e1d2dd0af645e760b86 Mon Sep 17 00:00:00 2001 From: Xinhao Yuan Date: Tue, 10 Dec 2024 06:43:45 -0800 Subject: [PATCH] #Centipede Fix the recent CI error where dsym cannot find the object files. PiperOrigin-RevId: 704688171 --- centipede/testing/build_defs.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/centipede/testing/build_defs.bzl b/centipede/testing/build_defs.bzl index dd2b8d87..52b39a74 100644 --- a/centipede/testing/build_defs.bzl +++ b/centipede/testing/build_defs.bzl @@ -94,7 +94,7 @@ def __sancov_fuzz_target_impl(ctx): inputs = [executable_dst], outputs = [dsym_dst], command = "dsymutil %s -o %s" % (executable_dst.path, dsym_dst.path), - execution_requirements = {"no-remote-exec": ""}, + execution_requirements = {"local": ""}, ) runfiles = runfiles.merge(ctx.runfiles(files = [dsym_dst]))