Plot runtime vs bandwidth too #4
Workflow file for this run
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: Run Benchmarks | |
on: | |
# manual trigger | |
workflow_dispatch: | |
# push for testing | |
push: | |
jobs: | |
run-benchmarks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build Docker Image | |
run: | | |
docker build -t tlsn-bench . -f ./tlsn/benches/benches.Dockerfile | |
- name: Run Benchmarks | |
run: | | |
docker run --privileged -v ${{ github.workspace }}/tlsn/benches/:/benches tlsn-bench | |
- name: Upload runtime_vs_latency.html | |
uses: actions/upload-artifact@v4 | |
with: | |
name: benchmark_graphs | |
path: | | |
./tlsn/benches/runtime_vs_latency.html | |
./tlsn/benches/runtime_vs_bandwidth.html |