Skip to content

Commit

Permalink
Merge pull request sharkdp#1547 from tavianator/jemalloc-aarch64
Browse files Browse the repository at this point in the history
ci: Support large page sizes on AArch64
  • Loading branch information
tmccombs committed May 4, 2024
2 parents 3680d10 + 216472f commit cd96ca0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/CICD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cd96ca0

Please sign in to comment.