Skip to content

Replace in-memory _relations with persisted reverse indexes #72

Replace in-memory _relations with persisted reverse indexes

Replace in-memory _relations with persisted reverse indexes #72

Workflow file for this run

name: Benchmark on IC
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
benchmark:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Run IC benchmarks
run: |
cd tests && ./run_test_ic_benchmark.sh 2>&1 | tee benchmark-output.txt
- name: Upload benchmark results
if: always()
uses: actions/upload-artifact@v4
with:
name: benchmark-results
path: tests/benchmark-output.txt
retention-days: 30