Files
django/.github/workflows/benchmark.yml
2025-12-29 09:59:18 -05:00

50 lines
1.5 KiB
YAML

name: Benchmark
on:
pull_request:
types: [ labeled, synchronize, opened, reopened ]
permissions:
contents: read
jobs:
Run_benchmarks:
if: contains(github.event.pull_request.labels.*.name, 'benchmark')
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout Benchmark Repo
uses: actions/checkout@v6
with:
repository: django/django-asv
path: "."
persist-credentials: false
- name: Setup Miniforge
# Pinned to v3.2.0.
uses: conda-incubator/setup-miniconda@835234971496cad1653abb28a638a281cf32541f
with:
miniforge-version: "24.1.2-0"
activate-environment: asv-bench
- name: Install Requirements
run: pip install -r requirements.txt
- name: Cache Django
uses: actions/cache@v4
with:
path: Django/*
key: Django
- name: Run Benchmarks
shell: bash -l {0}
run: |-
asv machine --machine ubuntu-latest --yes > /dev/null
echo 'Beginning benchmarks...'
asv continuous --interleave-processes -a processes=2 --split --show-stderr 'HEAD^' 'HEAD' |\
sed -n -E '/(before.*after.*ratio)|(BENCHMARKS)/,$p' >> out.txt
echo 'Benchmarks Done.'
echo '```' >> $GITHUB_STEP_SUMMARY
cat out.txt >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
if grep -q "PERFORMANCE DECREASED" out.txt;
then
exit 1
fi