drm_hwcomposer: CI: Initial build and clang-tidy checks

Build android-agnostic code in linux environment.
Enable static code analysis using clang-tidy.

Signed-off-by: Roman Stratiienko <r.stratiienko@gmail.com>
diff --git a/drm/DrmProperty.cpp b/drm/DrmProperty.cpp
index b60a76e..b8ce680 100644
--- a/drm/DrmProperty.cpp
+++ b/drm/DrmProperty.cpp
@@ -17,9 +17,10 @@
 #include "DrmProperty.h"
 
 #include <errno.h>
-#include <stdint.h>
 #include <xf86drmMode.h>
 
+#include <cstdint>
+#include <cstring>
 #include <string>
 
 #include "DrmDevice.h"