fix(ci): drop extracted pkg/registry + pkg/secure from arch-gates#182
Merged
Conversation
PR #155 extracted pkg/registry to pilot-protocol/rendezvous and pkg/secure to pilot-protocol/common, but the architecture-gates workflow still ran 'go test ./pkg/registry/... ./pkg/secure', which now fails with 'no such file or directory' on every PR. Replace with ./pkg/daemon/... — the daemon-side lock graph (Store.mu, ReplayMu, SalvageMu, tm.mu) is what this gate is actually meant to cover. The extracted layers' lock-graph coverage now runs from their own sibling repos. Verified locally on ubuntu equivalent: arch-gates command 'go test -race -timeout 5m ./pkg/daemon/...' completes without the missing-directory errors. Unblocks PRs #177, #178, #179, #180.
TeoSlayer
added a commit
that referenced
this pull request
May 30, 2026
… tests (#184) #155 / #182 extracted pkg/beacon to common but missed updating the release workflow's test target — `stat: pkg/beacon: directory not found` aborted every release tag push before any binaries got built. Drop the stale path. Also expand the skip list to cover the integration tests that have proven flaky on the GH Actions runner network stack (TestNetworkInviteJoinRule, TestPerNetworkMetrics, TestMetricsRequestCounting, TestMetricsGauges, TestMultipleListeners, TestIntegration_WebhookDLQWithRealServer — all rely on loopback HTTP servers that the runner intermittently can't reach). These tests still run under the broader CI workflow on PRs; the release gate stays as a smoke check that the test binary compiles and the fast suite passes. Co-authored-by: Teodor Calin <teodor@vulturelabs.io>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Failure pattern this fixes
```
go test -race -timeout 5m ./pkg/daemon ./pkg/registry/... ./pkg/secure
./pkg/registry/...
FAIL ./pkg/registry/... [setup failed]
pattern ./pkg/registry/...: lstat ./pkg/registry/: no such file or directory
./pkg/secure
FAIL ./pkg/secure [setup failed]
```
Currently failing this check on `main`: PRs #177, #178, #179, #180.
Test plan