Remove lz4 compression with external memory. (#7076)

This commit is contained in:
Jiaming Yuan
2021-07-06 14:46:43 +08:00
committed by GitHub
parent 116d711815
commit f937f514aa
9 changed files with 9 additions and 360 deletions

View File

@@ -21,12 +21,12 @@ jobs:
submodules: 'true'
- name: Install system packages
run: |
brew install lz4 ninja libomp
brew install ninja libomp
- name: Build gtest binary
run: |
mkdir build
cd build
cmake .. -DGOOGLE_TEST=ON -DUSE_OPENMP=ON -DUSE_DMLC_GTEST=ON -DPLUGIN_LZ4=ON -DPLUGIN_DENSE_PARSER=ON -GNinja
cmake .. -DGOOGLE_TEST=ON -DUSE_OPENMP=ON -DUSE_DMLC_GTEST=ON -DPLUGIN_DENSE_PARSER=ON -GNinja
ninja -v
- name: Run gtest binary
run: |