Remove CI graph generation

Signed-off-by: AKU <tom@tdpain.net>
This commit is contained in:
akp 2021-12-04 20:51:13 +00:00
parent 346ca00886
commit d916132960
No known key found for this signature in database
GPG key ID: AA5726202C8879B7
2 changed files with 0 additions and 35 deletions

View file

@ -1,35 +0,0 @@
name: Update running time graph
on:
workflow_dispatch:
schedule:
- cron: "58 4 * 12 *"
jobs:
graph:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Matplotlib
run: pip install matplotlib
- name: Run script
run: python generate-benchmark-graph.py challenges/2021/runtime-graph.png 2021
- name: Git commit and push
run: |
git config user.email 'actions@github.com'
git config user.name 'github-actions'
git add challenges/2021/runtime-graph.png
git commit -m 'Update running time graph'
git push origin HEAD:${{ github.ref }}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB