File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323 # (wrkflw secure-emulation runs as host processes — no sandboxing of the daemon).
2424 # If sccache is not installed, RUSTC_WRAPPER is silently ignored by cargo.
2525 RUSTC_WRAPPER : sccache
26- SCCACHE_DIR : /home/wendy/.cache /sccache
26+ SCCACHE_DIR : ${{ runner.temp || '/tmp' }} /sccache
2727 CARGO_TERM_COLOR : always
2828 RUST_BACKTRACE : " 1"
2929
Original file line number Diff line number Diff line change @@ -270,17 +270,16 @@ impl PipelineGraph {
270270 if let Some ( & ( px, _pw) ) = pl. get ( name) {
271271 if ( px - x) . abs ( ) > 0.5 {
272272 let text_fill = "#fff" ;
273- let font_family = "sans-serif" ;
274- group. push_str ( & format ! (
273+ let font_family = "sans-serif" ;
274+ group. push_str ( & format ! (
275275 r#" <g>
276276 <rect x="{x:.1}" y="{y:.1}" width="{w:.1}" height="{nh:.1}" rx="{rx:.1}" fill="{fill}" class="{cls}">
277277 <animateTransform attributeName="transform" type="translate"
278278 from="{dx:.1} 0" to="0 0" dur="{dur}ms" fill="freeze" />
279279 </rect>
280280 <text x="{tx:.1}" y="{ty:.1}" text-anchor="middle" fill="{tf}" font-size="12" font-family="{ff}">
281281 <animateTransform attributeName="transform" type="translate"
282- from="{dx:.1} 0" to="0 0" dur="{dur}ms" fill="freeze" />
283- {label}
282+ from="{dx:.1} 0" to="0 0" dur="{dur}ms" fill="freeze" /><tspan>{label}</tspan>
284283 </text>
285284 </g>
286285"# ,
You can’t perform that action at this time.
0 commit comments