summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThayne McCombs <astrothayne@gmail.com>2024-05-03 21:46:40 -0600
committerGitHub <noreply@github.com>2024-05-03 21:46:40 -0600
commitcd96ca071da079c2e642cdce6201ebec0c36db37 (patch)
treedf194f2f952f7c3bce3fbd0ef4c897bf650e8126
parent3680d10e5cea75946a20dbdf5b516c96c0a02985 (diff)
parent216472ff9f0a3a0427d6b57510db91c42b4c3175 (diff)
Merge pull request #1547 from tavianator/jemalloc-aarch64
ci: Support large page sizes on AArch64
-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