Skip to content

Commit 821c0fb

Browse files
committed
Merge branch 'master' of github.com:FastFilter/fastfilter_cpp
2 parents e34b6bd + 43a49f7 commit 821c0fb

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

.github/workflows/ubuntu.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Ubuntu 22.04 CI (GCC 11)
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
ubuntu-build:
7+
runs-on: ubuntu-22.04
8+
steps:
9+
- uses: actions/checkout@v3
10+
- name: Run tests
11+
run: |
12+
cd tests && make && ./unit
13+
- name: Build benchmarks
14+
run: |
15+
cd benchmarks && make

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# fastfilter_cpp
2+
[![Ubuntu 22.04 CI (GCC 11)](https://github.com/FastFilter/fastfilter_cpp/actions/workflows/ubuntu.yml/badge.svg)](https://github.com/FastFilter/fastfilter_cpp/actions/workflows/ubuntu.yml)
23

34
Fast Filter: Fast approximate membership filter implementations (C++)
45

src/bloom/bloom.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#include <algorithm>
55
#include <assert.h>
66
#include <sstream>
7+
#include <climits>
78

89
#include "hashutil.h"
910

0 commit comments

Comments
 (0)