We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cd4e41 commit ca9f64dCopy full SHA for ca9f64d
site/src/request_handlers/github.rs
@@ -10,6 +10,10 @@ use std::sync::Arc;
10
use regex::Regex;
11
12
lazy_static::lazy_static! {
13
+ // FIXME: the BODY_TIMER_BUILD regex handling looks broken when mixing multiple commands with
14
+ // and without parameters/trailing text. To reproduce the issue, in the `captures_all_shas` test
15
+ // at the bottom of this file, remove the link at the end of the first `build` command, and the
16
+ // second command's SHA won't be captured.
17
static ref BODY_TIMER_BUILD: Regex =
18
Regex::new(r"(?:\W|^)@rust-timer\s+build\s+(\w+)(?:\W|$)(?:include=(\S+))?\s*(?:exclude=(\S+))?\s*(?:runs=(\d+))?\s*(?:backends=(\S+))?").unwrap();
19
static ref BODY_TIMER_QUEUE: Regex =
0 commit comments