File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 49
49
with :
50
50
run : cargo codspeed run
51
51
token : ${{ secrets.CODSPEED_TOKEN }}
52
+
53
+ benchmark-large :
54
+ name : Benchmark Rust Crates (large)
55
+ # If the task is triggered manually, we want to run the large benchmarks
56
+ if : ${{ github.event_name == 'workflow_dispatch' }}
57
+ runs-on : ubuntu-22.04
58
+ steps :
59
+ - uses : actions/checkout@v4
60
+
61
+ - name : Setup Rust toolchain
62
+ uses : ./.github/actions/setup-rust
63
+
64
+ - name : Install cargo-codspeed
65
+ uses : taiki-e/install-action@v2
66
+ with :
67
+
68
+
69
+ - name : Build the benchmark target(s)
70
+ run : cargo codspeed build -p turbopack -p turbopack-bench
71
+
72
+ - name : Run the benchmarks
73
+ uses : CodSpeedHQ/action@v3
74
+ with :
75
+ run : cargo codspeed run
76
+ token : ${{ secrets.CODSPEED_TOKEN }}
You can’t perform that action at this time.
0 commit comments