File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
compare/compile/table/shortcuts Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ function normalizeBackend(backend: string): string {
36
36
</Tooltip >
37
37
</div >
38
38
39
- <pre ><code >./target/release/collector binary_stats compile \
39
+ <pre ><code >cargo run --release --bin collector \
40
+ binary_stats compile \
40
41
+{{ props.baseArtifact.commit }} \
41
42
--rustc2 +{{ props.artifact.commit }} \
42
43
--exact-match {{ testCase.benchmark }} \
Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ function normalizeScenario(scenario: string): string {
36
36
</script >
37
37
38
38
<template >
39
- <pre ><code >./target/release/collector profile_local cachegrind \
39
+ <pre ><code >cargo run --release --bin collector \
40
+ profile_local cachegrind \
40
41
+{{ firstCommit }} \<template v-if =" props .baselineCommit !== undefined " >
41
42
--rustc2 +{{ props.commit }} \</template >
42
43
--exact-match {{ testCase.benchmark }} \
Original file line number Diff line number Diff line change @@ -198,23 +198,23 @@ export function createDownloadLinksData(selector: Selector | null): {
198
198
199
199
const localCommands = {
200
200
base : state . base_commit
201
- ? `./target/ release/ collector profile_local cachegrind
201
+ ? `cargo run -- release --bin collector profile_local cachegrind
202
202
+${ state . base_commit } --exact-match ${ benchName (
203
203
state . benchmark
204
204
) } --profiles
205
205
${ profile ( state . benchmark ) } --scenarios ${ scenarioFilter (
206
206
state . scenario
207
207
) } `
208
208
: "" ,
209
- new : `./target/ release/ collector profile_local cachegrind
209
+ new : `cargo run -- release --bin collector profile_local cachegrind
210
210
+${ state . commit } --exact-match ${ benchName (
211
211
state . benchmark
212
212
) } --profiles
213
213
${ profile ( state . benchmark ) } --scenarios ${ scenarioFilter (
214
214
state . scenario
215
215
) } `,
216
216
diff : state . base_commit
217
- ? `./target/ release/ collector profile_local cachegrind
217
+ ? `cargo run -- release --bin collector profile_local cachegrind
218
218
+${ state . base_commit } --rustc2 +${
219
219
state . commit
220
220
} --exact-match ${ benchName ( state . benchmark ) } --profiles
You can’t perform that action at this time.
0 commit comments