Skip to content

Commit

Permalink
Add results processing
Browse files Browse the repository at this point in the history
  • Loading branch information
cz4rs committed Jan 11, 2023
1 parent c859c0e commit c0cabbf
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/process-results.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Process benchmark results

on: push

jobs:
run-benchmark-monitor:
runs-on: ubuntu-latest
steps:
- name: Checkout processing script
uses: actions/checkout@v3
with:
repository: cz4rs/benchmark_monitor
- name: Checkout
uses: actions/checkout@v3
with:
path: benchmark-results

- name: Process available benchmark results
run: |-
python3 -m venv env
source env/bin/activate
pip install wheel
pip install -r requirements.txt
python benchmark_monitor.py -d ./benchmark-results -o output
- name: Generate nojekyll file
working-directory: output
run: touch .nojekyll

- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: output
branch: deploy-benchmarks
clean: true
single-commit: true

0 comments on commit c0cabbf

Please sign in to comment.