From 54da98a61167acd008c33b7582657dd323003331 Mon Sep 17 00:00:00 2001 From: Philipp Date: Tue, 5 Mar 2024 12:44:17 +0100 Subject: [PATCH] Updated workflow. --- .github/workflows/build.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c77f1cd..0c73935 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,6 @@ jobs: matrix: os: [ ubuntu-22.04 ] env: - DM_MQUEUE_SKIP: 1 DM_PIPE_SKIP: 1 GCC_V: 13 NO_COLOR: 1 @@ -24,6 +23,14 @@ jobs: with: submodules: recursive + - name: Configure System (Linux) + if: contains(matrix.os, 'ubuntu') + run: | + sudo mkdir -p /dev/mqueue + sudo mount -t mqueue none /dev/mqueue + sudo sysctl fs.mqueue.msg_max=100 + sudo sysctl fs.mqueue.msgsize_max=16384 + - name: Install Dependencies (Linux) if: contains(matrix.os, 'ubuntu') run: |