summaryrefslogtreecommitdiffstats
path: root/.github/workflows/CICD.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/CICD.yml')
-rw-r--r--.github/workflows/CICD.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml
index c07c41c..7abebfd 100644
--- a/.github/workflows/CICD.yml
+++ b/.github/workflows/CICD.yml
@@ -134,7 +134,11 @@ jobs:
- name: Build
shell: bash
- run: $BUILD_CMD build --locked --release --target=${{ matrix.job.target }}
+ run: |
+ case ${{ matrix.job.target }} in
+ aarch64-*) export JEMALLOC_SYS_WITH_LG_PAGE=16 ;;
+ esac;
+ $BUILD_CMD build --locked --release --target=${{ matrix.job.target }}
- name: Set binary name & path
id: bin