From 4c429fa3f997efb49af053f05ffb3945b8cf39b0 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Sun, 16 Jun 2024 00:59:52 +1000 Subject: [PATCH] Fix action.yml Signed-off-by: Jiahao XU --- .github/actions/just-setup/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/just-setup/action.yml b/.github/actions/just-setup/action.yml index c77901f9..6ab5176f 100644 --- a/.github/actions/just-setup/action.yml +++ b/.github/actions/just-setup/action.yml @@ -127,7 +127,9 @@ runs: - name: Enable transparent huge page if: runner.os == 'Linux' run: echo madvise | sudo tee /sys/kernel/mm/transparent_hugepage/enabled + shell: bash - name: Configure jemalloc (used by rustc) to use transparent huge page if: runner.os == 'Linux' run: echo "MALLOC_CONF=thp:always,metadata_thp:always" >> "$GITHUB_ENV" + shell: bash