fix(CI): fix windows CI

Signed-off-by: Andrea Terzolo <andreaterzolo3@gmail.com>
This commit is contained in:
Andrea Terzolo 2024-02-14 14:25:41 +01:00 committed by poiana
parent d49b21ab22
commit a44bee57d9
2 changed files with 3 additions and 4 deletions

View File

@ -24,10 +24,6 @@ limitations under the License.
#include "helpers.h"
#ifdef _WIN32
#define PATH_MAX 260
#endif
using namespace falco::app;
using namespace falco::app::actions;

View File

@ -27,6 +27,9 @@ limitations under the License.
#include <sys/stat.h>
#ifndef _WIN32
#include <unistd.h>
#else
// Used in the ebpf probe path.
#define PATH_MAX 260
#endif
#include "falco_utils.h"