Add CI target and workflow for RavenDb (GH-2558)#2561
Merged
jeremydmiller merged 3 commits intomainfrom Apr 22, 2026
Merged
Conversation
Adds a CIRavenDb Nuke target that builds and exercises both RavenDbTests and RavenDbTests.LeaderElection one class (or one method, for leader election) at a time with retry, plus a dedicated GitHub Actions workflow. RavenDb tests use the embedded RavenDB.TestDriver, so no docker services are required. Also fixes DiscoverTestMethods so inherited [Fact] methods on a compliance base class (e.g. LeadershipElectionCompliance) are attributed to the concrete derived class — previously leader-election projects discovered zero methods, silently running nothing. Includes the merged community fixes (#2554, #2555) which repair RavenDb scheduled-job locking and guard RavenDb durability recovery against orphaned listener URIs; both ship with regression tests. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
|
I checked why this is blocked: the PR is behind I could not push directly to
Local verification on that branch: |
Resolve merge conflict for RavenDb CI PR
This was referenced Apr 23, 2026
Closed
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
CIRavenDbNuke target +.github/workflows/ravendb.ymlworkflow coveringRavenDbTestsandRavenDbTests.LeaderElection(no docker — uses embeddedRavenDB.TestDriver)DiscoverTestMethodsinbuild/TestAllPersistence.csso inherited[Fact]methods on compliance base classes (e.g.LeadershipElectionCompliance) are attributed to the concrete derived class — previously leader-election projects silently discovered zero methodsCloses #2558
Test plan
./build.sh CIRavenDb --framework net9.0passes locally (3:12 runtime)RavenDbTests— 139/139 pass (including the 4 new regression tests from Fix RavenDb scheduled messages not being delivered when using a durable transport #2554/Fix NRE in RavenDb durability recovery #2555)RavenDbTests.LeaderElection— 12 inherited compliance tests discovered and all passravendbworkflow green on remote🤖 Generated with Claude Code