From 62e64e827a3e6afbd110f7689a512549e7fe0aef Mon Sep 17 00:00:00 2001 From: Krisztian Szilvasi <34309983+kr-t@users.noreply.github.com> Date: Fri, 16 Jan 2026 10:06:36 +0100 Subject: [PATCH 1/2] Include fcntl.h in core_mq.c Some platforms (like openwrt) require this file to find macros like O_CREAT or O_RDWR Signed-off-by: Krisztian Szilvasi <34309983+kr-t@users.noreply.github.com> --- src/shared/platform/posix/core_mq.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shared/platform/posix/core_mq.c b/src/shared/platform/posix/core_mq.c index 85a7d77a..e69ae382 100644 --- a/src/shared/platform/posix/core_mq.c +++ b/src/shared/platform/posix/core_mq.c @@ -8,6 +8,7 @@ #include "ocre_core_external.h" #include +#include #include int core_mq_init(core_mq_t *mq, const char *name, size_t msg_size, uint32_t max_msgs) From 52da481a3c5b358a9442dbbdbbbc84f5672fdb4b Mon Sep 17 00:00:00 2001 From: Krisztian Szilvasi <34309983+kr-t@users.noreply.github.com> Date: Fri, 16 Jan 2026 10:12:06 +0100 Subject: [PATCH 2/2] Add legacy branch to check on PRs Signed-off-by: Krisztian Szilvasi <34309983+kr-t@users.noreply.github.com> --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ab99dfbd..65146a6f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,10 +7,12 @@ on: branches: - main - staging + - legacy pull_request: branches: - main - staging + - legacy jobs: setup-local-runner: