From 8131228d055544c0a8f0fef06f8238f26b326735 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Mon, 18 Mar 2024 02:06:43 +0900 Subject: [PATCH] ci: Work around sanitizer issue on latest Linux kernel --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a5a12f54..a564dd13a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -195,6 +195,8 @@ jobs: - name: Install Rust # TODO: LLVM bug https://github.com/rust-lang/rust/issues/122476 run: rustup update nightly-2024-03-13 && rustup default nightly-2024-03-13 + # https://github.com/google/sanitizers/issues/1716 / https://github.com/actions/runner-images/issues/9491 + - run: sudo sysctl vm.mmap_rnd_bits=28 - name: Run sanitizers run: ci/san.sh