From 130dd97cde3c9e50893c3e929df5c9f2a7a35e62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Szekeres?= Date: Tue, 21 Jan 2025 16:18:47 -0800 Subject: [PATCH] Remove `mmap_rnd_bits` workaround as it's now fixed by actions. See https://github.com/actions/runner-images/issues/9491#issuecomment-1565496278. PiperOrigin-RevId: 718112641 --- .github/workflows/bazel_test.yml | 5 ----- .github/workflows/bazel_test_centipede.yml | 5 ----- .github/workflows/cmake_test.yml | 5 ----- 3 files changed, 15 deletions(-) diff --git a/.github/workflows/bazel_test.yml b/.github/workflows/bazel_test.yml index 0e4389d6..18621148 100644 --- a/.github/workflows/bazel_test.yml +++ b/.github/workflows/bazel_test.yml @@ -36,11 +36,6 @@ jobs: config: ['default', 'fuzztest'] compilation_mode: ['fastbuild', 'opt', 'dbg'] steps: - # TODO(lszekeres): Remove once the following is fixed: - # https://github.com/actions/runner-images/issues/9491 - - name: Reduce ASLR entropy as a temporary workaround - run: | - sudo sysctl -w vm.mmap_rnd_bits=28 - name: Checkout repository uses: actions/checkout@v4 - name: Install dependencies diff --git a/.github/workflows/bazel_test_centipede.yml b/.github/workflows/bazel_test_centipede.yml index 5ce7c6a6..b39e778e 100644 --- a/.github/workflows/bazel_test_centipede.yml +++ b/.github/workflows/bazel_test_centipede.yml @@ -35,11 +35,6 @@ jobs: matrix: config: ['default', 'noriegeli', 'asan'] steps: - # TODO(lszekeres): Remove once the following is fixed: - # https://github.com/actions/runner-images/issues/9491 - - name: Reduce ASLR entropy as a temporary workaround - run: | - sudo sysctl -w vm.mmap_rnd_bits=28 - name: Checkout repository uses: actions/checkout@v4 - name: Install dependencies diff --git a/.github/workflows/cmake_test.yml b/.github/workflows/cmake_test.yml index d526bd6f..f64d68be 100644 --- a/.github/workflows/cmake_test.yml +++ b/.github/workflows/cmake_test.yml @@ -38,11 +38,6 @@ jobs: matrix: mode: ['default', 'fuzzing', 'codelab'] steps: - # TODO(lszekeres): Remove once the following is fixed: - # https://github.com/actions/runner-images/issues/9491 - - name: Reduce ASLR entropy as a temporary workaround - run: | - sudo sysctl -w vm.mmap_rnd_bits=28 - name: Checkout repository uses: actions/checkout@v4 - name: Install dependencies