We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 226bbf6 commit 3f16585Copy full SHA for 3f16585
1 file changed
.github/workflows/tests.yml
@@ -87,13 +87,20 @@ jobs:
87
env:
88
CC: ${{ matrix.compiler }}
89
run: |
90
+ # Landlock support
91
+ landlock=false
92
+ if [ -e /usr/include/linux/landlock.h ]; then
93
+ landlock=true
94
+ fi
95
+
96
# Standard build
97
if [ "${{ matrix.variant }}" = "default" ]; then
98
meson setup build \
99
-Dprefix=/usr \
100
-Dtests=true \
101
-Dpam-cgroup=true \
102
-Dtools-multicall=true \
103
+ -Dlandlock-monitor=${landlock} \
104
-Dwerror=true \
105
-Db_lto_mode=default
106
elif [ "${{ matrix.variant }}" = "sanitizer" ]; then
0 commit comments