-
Notifications
You must be signed in to change notification settings - Fork 20
44 lines (36 loc) · 1.17 KB
/
bench.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Benchmarks
on:
push:
branches:
- bgins/feat-add-matching-sorts
permissions:
deployments: write
contents: write
jobs:
run-solver-benchmarks:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install golang
uses: actions/setup-go@v5
- name: Run benchmarks
run: ./stack benchmarks-solver | tee assets/benchmark-output.txt
- name: Download previous benchmark data
uses: actions/cache@v4
with:
path: ./cache
key: ${{ runner.os }}-benchmark
- name: Store benchmark results
uses: benchmark-action/github-action-benchmark@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
tool: 'go'
output-file-path: assets/benchmark-output.txt
external-data-json-path: ./cache/benchmark-data.json
comment-on-alert: true
summary-always: true
auto-push: false
- name: Publish benchmark page
if: github.event_name != 'pull_request'
run: git push 'https://Lilypad-Tech:${{ secrets.GITHUB_TOKEN }}@github.com/Lilypad-Tech/lilypad.git' gh-pages:gh-pages