This is an automated email from the ASF dual-hosted git repository.

bmahler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/master by this push:
     new f91140d95 [build] Fix cmake build / tidybot.
f91140d95 is described below

commit f91140d959fd9b92913c78a1c6329095d53fe0e5
Author: Jason Zhou <[email protected]>
AuthorDate: Thu Aug 22 13:38:52 2024 -0400

    [build] Fix cmake build / tidybot.
    
    The cmake build and therefore tidybot are failing because they cannot
    find the device manager protobuf files, we will run protobuf for
    device_manager/state.proto to generate the files.
    
    Review: https://reviews.apache.org/r/75186/
---
 src/CMakeLists.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index b88554ca2..4aa97bf7a 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -99,6 +99,7 @@ if (NOT WIN32)
   PROTOC_GENERATE(INTERNAL TARGET 
slave/containerizer/mesos/isolators/volume/csi/state)
   PROTOC_GENERATE(INTERNAL TARGET 
slave/containerizer/mesos/provisioner/docker/message)
   PROTOC_GENERATE(INTERNAL TARGET slave/volume_gid_manager/state)
+  PROTOC_GENERATE(INTERNAL TARGET slave/containerizer/device_manager/state)
 endif ()
 
 

Reply via email to