Skip to content

Commit

Permalink
Disable jemalloc when building the bundled arrow (#122)
Browse files Browse the repository at this point in the history
* Disable jemalloc when building the bundled arrow
* Don't commit docs in pull request CI

Signed-off-by: Tao He <[email protected]>
  • Loading branch information
sighingnow authored Mar 14, 2023
1 parent 1f2516a commit e4dcbfe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
body-include: '<!-- Sticky Pull Request Comment: Surge Preview build -->'

- name: Commit Doc
if: ${{ github.ref == 'refs/heads/main' && github.repository == 'alibaba/GraphAr' }}
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' && github.repository == 'alibaba/GraphAr' }}
run: |
git config user.email [email protected]
git config user.name github-actions
Expand Down
1 change: 1 addition & 0 deletions cpp/cmake/apache-arrow.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ function(build_arrow)
"-DARROW_ORC=ON"
"-DARROW_COMPUTE=ON"
"-DARROW_DATASET=ON"
"-DARROW_JEMALLOC=OFF"
"-DARROW_WITH_SNAPPY=OFF"
"-DARROW_WITH_LZ4=OFF"
"-DARROW_WITH_ZSTD=ON"
Expand Down

0 comments on commit e4dcbfe

Please sign in to comment.