Skip to content

Commit

Permalink
Test SHA comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelburnham committed Nov 7, 2023
1 parent ef1ed02 commit 6e51e58
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions benches/fibonacci_lem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,11 @@ impl ProveParams {
match output_type.as_ref() {
"pr-comment" => ("fib".into(), format!("num-{}", self.fib_n)),
"commit-comment" => {
let branch = env!("VERGEN_GIT_BRANCH");
let branch_name = parse_merge_branch(branch).unwrap();
//let branch = env!("VERGEN_GIT_BRANCH");
//let branch_name = parse_merge_branch(branch).unwrap();
let branch = env!("VERGEN_GIT_SHA");
(
format!("fib-branch={}", branch_name),
format!("fib-branch={}", branch),
format!("num-{}", self.fib_n),
)
}
Expand Down

0 comments on commit 6e51e58

Please sign in to comment.