Skip to content

Run Benchmarks

Run Benchmarks #172

name: Run Benchmarks
on:
push:
branches:
- main
workflow_dispatch: # Allows the workflow to be triggered manually
inputs: # Optional inputs to customize the workflow when triggered manually
branch:
description: 'Branch to run benchmarks on'
required: false
default: 'main'
jobs:
run-benchmarks:
runs-on: ucc-benchmarks-8-core-U22.04
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.DEPLOY_KEY }}
# Build the Docker image
- name: Build Docker image
run: docker build -t ucc-benchmark .
# Run the benchmarks in the Docker container
- name: Run benchmarks
run: |
docker run --rm \
-v "/home/runner/work/ucc/ucc:/ucc" \
ucc-benchmark bash -c "
source /venv/bin/activate && \
./benchmarks/scripts/run_benchmarks.sh 8 && \
python ./benchmarks/scripts/plot_avg_benchmarks_over_time.py && \
python ./benchmarks/scripts/plot_latest_benchmarks.py
"
# Commit and push benchmark results
- name: Configure Git for commit
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
- name: Commit and push results
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git switch ${{ github.head_ref || github.ref_name }}
git add benchmarks/*
git status
git commit -m "Update benchmark results" || echo "No changes to commit"
git push origin HEAD:${{ github.head_ref || github.ref_name }} --force