-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (47 loc) · 1.31 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
name: Benchmark
on:
push: {}
workflow_dispatch: {}
jobs:
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
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- run: ./script/linux # Install Dependencies
- run: RUSTC_WRAPPER=sccache cargo build --release
depot-cacheless:
name: Depot Cacheless
runs-on: depot-ubuntu-24.04
defaults:
run:
working-directory: upstream
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- run: ./script/linux # Install Dependencies
- run: cargo build --release
github-local-cache:
name: Github with Local Cache
runs-on: ubuntu-24.04
defaults:
run:
working-directory: upstream
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- run: ./script/linux # Install Dependencies
- run: RUSTC_WRAPPER=sccache SCCACHE_GHA_ENABLED=true cargo build --release