Skip to content

Commit

Permalink
CI: fix make & ndk;
Browse files Browse the repository at this point in the history
  • Loading branch information
housisong committed Dec 25, 2024
1 parent 15e7e25 commit ef5c9d3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
- name: make_zlibByCode
run: |
git clone --depth=1 https://github.com/sisong/zlib.git ../zlib
make ZLIB=1 -j
make ZLIB=1 clean
make ZLIB=1 BZIP2=1 -j
make ZLIB=1 BZIP2=1 clean
- name: make_releaseByStatic
run: |
make ZLIB=1 BZIP2=1 MINS=1 STATIC_CPP=1 STATIC_C=1 -j
Expand All @@ -41,11 +41,11 @@ jobs:
- name: installClang
run: |
sudo apt-get install -y llvm clang
- name: make_slef
- name: make_slefByClang
run: |
make BSD=0 BZIP2=0 LDEF=0 LZMA=0 ZSTD=0 MD5=0 -j
make BSD=0 BZIP2=0 LDEF=0 LZMA=0 ZSTD=0 MD5=0 CL=1 -j
make clean
- name: make_byClang
- name: make_allByClang
run: |
git clone --depth=1 https://github.com/sisong/libmd5.git ../libmd5
git clone --depth=1 https://github.com/sisong/lzma.git ../lzma
Expand Down Expand Up @@ -109,6 +109,7 @@ jobs:
ndk-version: r16b
- name: buildByAndroidNDK
run: |
sudo apt-get -y install libncurses5
git clone --depth=1 https://github.com/sisong/lzma.git ../lzma
git clone --depth=1 https://github.com/sisong/bzip2.git ../bzip2
git clone --depth=1 https://github.com/sisong/zstd.git ../zstd
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#define bloom_filter_h
#include <string.h> //memset
#include <assert.h>
#include <stdint.h> //uint32_t
#include <stdexcept>//std::runtime_error
#include "../../../../libParallel/parallel_channel.h"
#if (_IS_USED_MULTITHREAD)
Expand Down

0 comments on commit ef5c9d3

Please sign in to comment.