diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2024-03-15 06:57:38 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2024-03-15 06:57:38 +0100 |
commit | 7ef7667da37d3c64d4ee17197069ed5a5efe5a3e (patch) | |
tree | fea2b8637e18d297c15eba6c0e8a4a7910ea9593 /.github | |
parent | d43a3d14369af59989130c0910234ff0888e46fa (diff) |
Fix random sanitizer crashes caused by high-entropy ASLR on Ubuntu Github Runner.
* removed arch condition (c&p mistake)
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e461b9512..f3f3396c1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -169,7 +169,7 @@ jobs: cd nDPI-dev ./autogen.sh --prefix=/usr/local --with-only-libndpi && make install - name: Fix kernel mmap rnd bits on Ubuntu - if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.arch, 'x86_64') + if: startsWith(matrix.os, 'ubuntu') run: | # Workaround for compatinility between latest kernel and sanitizer # See https://github.com/actions/runner-images/issues/9491 |