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