Skip to content

Commit

Permalink
Updated workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
interkosmos committed Mar 5, 2024
1 parent 30b9fd5 commit 54da98a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down

0 comments on commit 54da98a

Please sign in to comment.