Skip to content

Commit ff2e025

Browse files
authored
Merge pull request #33 from FastFilter/dlemire/add_ci
Adding CI
2 parents ab77a5f + 611bc57 commit ff2e025

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-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

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)