diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-05-03 15:22:49 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-05-03 15:23:41 -0400 |
commit | 216472ff9f0a3a0427d6b57510db91c42b4c3175 (patch) | |
tree | df194f2f952f7c3bce3fbd0ef4c897bf650e8126 | |
parent | 3680d10e5cea75946a20dbdf5b516c96c0a02985 (diff) |
ci: Support large page sizes on AArch64
Fixes #1085.
-rw-r--r-- | .github/workflows/CICD.yml | 6 |
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 |