[CI] Build the Rust extensions on the 5090 pool and seed the cache from main (#33460)

This commit is contained in:
Liangsheng Yin
2026-08-03 23:33:20 -07:00
committed by GitHub
parent 101bb2327c
commit 157401f050
7 changed files with 72 additions and 6 deletions
-1
View File
@@ -16,7 +16,6 @@ use crate::error::Error;
// `Failed(Error)` carries the cause for observability even where it isn't read
// back yet; `EncodeDone` belongs to the deferred Encoder edge.
#[allow(dead_code)]
#[derive(Debug, Clone)]
pub enum RequestState {
Received,
-2
View File
@@ -263,7 +263,6 @@ fn cache_bound(pattern: &str, max_len: usize) {
/// can pair one pattern's bound with another's, and there is no second route to a
/// bound that could drift from the validated one.
pub struct RegexPattern<'a> {
#[allow(dead_code)]
pattern: &'a str,
max_len: usize,
}
@@ -310,7 +309,6 @@ impl<'a> RegexPattern<'a> {
Ok(Self { pattern, max_len })
}
#[allow(dead_code)]
/// The admitted pattern. See the field note on why this is kept.
#[allow(dead_code)]
pub fn pattern(&self) -> &str {