Cuckoo Hash & Cuckoo Filter test #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cuckoo Hash & Cuckoo Filter test | |
on: | |
push: | |
branches: | |
- 'main' | |
schedule: | |
# Runs at 00:00 UTC on the first of every month | |
- cron: '0 0 1 * *' | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- llvm: "15" | |
- llvm: "18" | |
- llvm: "19" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install deps | |
run: | | |
chmod +x tools/install_deps.sh | |
./tools/install_deps.sh -l ${{ matrix.llvm }} | |
- name: Build and test | |
run: | | |
cd src | |
make test |