-
Notifications
You must be signed in to change notification settings - Fork 85
57 lines (47 loc) · 1.59 KB
/
benchmark.yaml
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
45
46
47
48
49
50
51
52
53
54
55
56
name: Benchmarks
on:
workflow_dispatch:
push:
branches: [main]
jobs:
storage-benchmark:
runs-on: ubuntu-latest
permissions:
contents: "write"
id-token: "write"
steps:
- name: Checkout repository
uses: actions/checkout@v3
- id: "auth"
name: "Authenticate to Google Cloud"
uses: "google-github-actions/auth@v1"
with:
credentials_json: "${{ secrets.GOOGLE_CI_SA_CREDENTIALS }}"
- id: "get-credentials"
name: Get GKE credentials
uses: "google-github-actions/get-gke-credentials@v1"
with:
cluster_name: "${{ secrets.GKE_CI_CLUSTER_NAME }}"
location: "${{ secrets.GKE_CI_CLUSTER_REGION }}"
- name: Run benchmark test
run: sh -c "deployments/storage-benchmark/run_benchmark.bash 5m"
- name: Download previous benchmark data
uses: actions/cache@v4
with:
path: ./cache
key: ${{ runner.os }}-benchmark
# Run `github-action-benchmark` action
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
name: "Papyrus storage benchmark"
# What benchmark tool the output.txt came from
tool: 'customSmallerIsBetter'
# Where the output from the benchmark tool is stored
output-file-path: output.txt
# Push to gh-pages branch
- name: Push benchmark result
run: |
git switch gh-pages
git push https://github.com/starkware-libs/papyrus.git gh-pages:gh-pages --no-verify
git checkout -