-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (72 loc) · 1.83 KB
/
benchmark.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: Benchmark
on:
push: {}
workflow_dispatch: {}
jobs:
depot-cacheless:
name: Depot Cacheless
runs-on: depot-ubuntu-24.04
defaults:
run:
working-directory: upstream
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- run: |
rm /home/runner/.bazelrc
bazel build :grpc
depot-remote-cache:
name: Depot with Remote Cache
runs-on: depot-ubuntu-24.04
defaults:
run:
working-directory: upstream
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- run: bazel build :grpc
github-cacheless:
name: Github Cacheless
runs-on: ubuntu-24.04
defaults:
run:
working-directory: upstream
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- run: |
bazel build :grpc
github-actions-cache:
name: Github with @actions/cache
runs-on: ubuntu-24.04
defaults:
run:
working-directory: upstream
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/cache@v3
with:
path: /home/runner/.cache/bazel
key: bazel-${{ hashFiles('upstream/.bazelversion', 'upstream/.bazelrc', 'upstream/WORKSPACE', 'upstream/WORKSPACE.bazel', 'upstream/MODULE.bazel') }}
- run: bazel build :grpc
github-setup-bazel:
name: Github with @bazel-contrib/setup-bazel
runs-on: ubuntu-24.04
defaults:
run:
working-directory: upstream
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: bazel-contrib/[email protected]
with:
bazelisk-cache: true
disk-cache: ${{ github.workflow }}
repository-cache: true
- run: bazel build :grpc