We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ab77a5f + 611bc57 commit ff2e025Copy full SHA for ff2e025
.github/workflows/ubuntu.yml
@@ -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
15
+ cd benchmarks && make
src/bloom/bloom.h
@@ -4,6 +4,7 @@
#include <algorithm>
#include <assert.h>
#include <sstream>
+#include <climits>
#include "hashutil.h"
0 commit comments