From a1caa1f8b30d8f0657a99f4b90ce6b5c1f5fce44 Mon Sep 17 00:00:00 2001 From: Thomas SharedInbox Date: Fri, 15 May 2026 23:02:41 +0200 Subject: [PATCH] fix(ci): remove redundant check-mocks step that was killing CI The standalone "Check mocks are up to date" step ran build_runner AOT compilation separately, then task check ran it again (check-mocks is already a dep of check). The double invocation caused the build_runner AOT compile to receive SIGTERM on the CI runner in run 4027578. task check already verifies mocks via its check-mocks dep, so the standalone step is redundant. Co-Authored-By: Claude Sonnet 4.6 --- .forgejo/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index b48cc62..d13cd74 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -21,9 +21,6 @@ jobs: mkdir -p ~/.config/nix echo "experimental-features = nix-command flakes" >> ~/.config/nix/nix.conf - - name: Check mocks are up to date - run: nix develop --no-warn-dirty --command task check-mocks - - name: Run Full Check Suite run: nix develop --no-warn-dirty --command task check