diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2024-03-25 08:15:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-25 08:15:19 +0100 |
commit | 51f5fc714015c312622ed4ee1820518d26edee65 (patch) | |
tree | 9cd1cee32e3fadada62414f1821210fb4bb83b95 /.github/workflows | |
parent | be0fd7444ff714f3c654aca08b3bf151ac801bbf (diff) |
Added support for roaring bitmap v3 (#2355)
* Integrated RoaringBitmap v3
* Renamed ndpi_bitmap64 ro ndpi_bitmap64_fuse
* Fixes to ndpi_bitmap for new roaring library
* Fixes for bitmap serialization
* Fixed format
* Warning fix
* Conversion fix
* Warning fix
* Added check for roaring v3 support
* Updated file name
* Updated path
* Uses clang-9 (instead of clang-7) for builds
* Fixed fuzz_ds_bitmap64_fuse
* Fixes nDPI printf handling
* Disabled printf
* Yet another printf fix
* Cleaup
* Fx for compiling on older platforms
* Fixes for old compilers
* Initialization changes
* Added compiler check
* Fixes for old compilers
* Inline function is not static inline
* Added missing include
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8323c25da..516a569ce 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -107,7 +107,7 @@ jobs: msan: "--with-sanitizer" nBPF: "" lto_gold_linker: "--with-lto-and-gold-linker" - - compiler: "clang-7" # "Oldest" clang easily available + - compiler: "clang-9" # "Oldest" clang easily available os: ubuntu-20.04 arch: "x86_64" gcrypt: "" |