Merge pull request #1547 from tavianator/jemalloc-aarch64

ci: Support large page sizes on AArch64
This commit is contained in:
Thayne McCombs 2024-05-03 21:46:40 -06:00 committed by GitHub
commit cd96ca071d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -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