mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-12 23:02:41 +00:00
parent
66e2bf63bd
commit
69cd575351
4 changed files with 212 additions and 17 deletions
201
run.json
201
run.json
File diff suppressed because one or more lines are too long
17
stages/005-fix_lints@1/diff.patch
Normal file
17
stages/005-fix_lints@1/diff.patch
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
diff --git a/lib/crates/fabro-store/src/run_state.rs b/lib/crates/fabro-store/src/run_state.rs
|
||||
index 35c18d5f6..85052f8ce 100644
|
||||
--- a/lib/crates/fabro-store/src/run_state.rs
|
||||
+++ b/lib/crates/fabro-store/src/run_state.rs
|
||||
@@ -72,10 +72,8 @@ impl RunProjectionReducer for RunProjection {
|
||||
EventBody::RunSubmitted(props) => {
|
||||
self.spec.definition_blob = props.definition_blob;
|
||||
}
|
||||
- EventBody::RunStartRequested(props) => {
|
||||
- if props.resume {
|
||||
- self.try_apply_status(RunStatus::Submitted, ts)?;
|
||||
- }
|
||||
+ EventBody::RunStartRequested(props) if props.resume => {
|
||||
+ self.try_apply_status(RunStatus::Submitted, ts)?;
|
||||
}
|
||||
EventBody::RunPending(props) => {
|
||||
self.try_apply_status(
|
||||
6
stages/005-fix_lints@1/status.json
Normal file
6
stages/005-fix_lints@1/status.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"outcome": "succeeded",
|
||||
"notes": "Stage completed: fix_lints",
|
||||
"failure_reason": null,
|
||||
"timestamp": "2026-05-24T22:52:23.262607Z"
|
||||
}
|
||||
5
stages/006-preflight_lint@2/script_invocation.json
Normal file
5
stages/006-preflight_lint@2/script_invocation.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"script": "cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1",
|
||||
"command": "exec 2>&1\ncargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1",
|
||||
"language": "shell"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue