Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
b9d43f2
fix: add update fallback propagation
sanity Nov 7, 2025
f72b27c
fix(update): keep local subscribers and add PUT ack tracing
sanity Nov 7, 2025
6f7a90a
fix(update): remove GET fallback propagation
sanity Nov 9, 2025
a3ce0c5
style(update): use direct equality in allow-self check
sanity Nov 9, 2025
6fa3d4b
feat: harden subscription routing
sanity Nov 7, 2025
067b91f
fix(put): preserve upstream during broadcast
sanity Nov 7, 2025
0a1a2f5
fix(put): deliver SuccessfulPut directly to origin
sanity Nov 8, 2025
75fc24e
fix(put): send direct ack to origin on final hop
sanity Nov 10, 2025
422f5f5
fix(put): ensure broadcast hop acks original origin
sanity Nov 10, 2025
c9ecc2d
fix(core): drain peer connection channel before waiting
sanity Nov 12, 2025
67a0288
fix(network): prevent peer connection listener send starvation
sanity Nov 12, 2025
452a6fd
refactor(transport): replace handshake pipeline
sanity Nov 7, 2025
abb6a30
ci: add river six-peer regression
sanity Nov 7, 2025
b5123a5
ci: run six-peer regression on ubuntu runners
sanity Nov 7, 2025
5db0a72
ci: run six-peer regression on ubuntu runners
sanity Nov 7, 2025
2c1749a
ci: fix river checkout paths
sanity Nov 7, 2025
836d7fc
ci: use absolute paths for river workflow
sanity Nov 7, 2025
3b64f0b
ci: checkout freenet-core at workspace root
sanity Nov 7, 2025
1e1aff4
ci: use absolute workspace paths
sanity Nov 7, 2025
601e6f3
ci: debug river workspace layout
sanity Nov 7, 2025
03232c4
ci: checkout river into dedicated folder
sanity Nov 7, 2025
00b66d4
ci: simplify river checkout
sanity Nov 7, 2025
41b5cbf
ci: run river test from repo root
sanity Nov 7, 2025
b28a9e0
ci: run river tests from main workspace
sanity Nov 7, 2025
ae69695
ci: run river message_flow from repo root
sanity Nov 7, 2025
b8184c9
ci: checkout freenet-test-network
sanity Nov 7, 2025
140fa41
ci: link freenet-test-network dependency
sanity Nov 7, 2025
2ca74cb
ci: rely on crates.io test network
sanity Nov 7, 2025
e6f79cf
fix: avoid PUT forward panic before location assigned
sanity Nov 7, 2025
4fa8bc8
fix(connect): add shutdown handle for initial join task
sanity Nov 8, 2025
c518296
fix: remove unused oneshot import
sanity Nov 12, 2025
5003947
ci: merge main into stack/connect-transport-rewrite
sanity Nov 12, 2025
2b64641
ci: merge origin/main into stack/connect-transport-rewrite
sanity Nov 13, 2025
99e6d7f
build(macros): restore darling 0.21
sanity Nov 13, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions .github/workflows/six-peer-regression.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: six-peer-regression
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shouldn't we pull this within the ubertest definition to not have yet another pipeline?


on:
workflow_dispatch:
push:
branches:
- stack/connect-transport-rewrite
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this shouldn't be necessary

- main
pull_request:
branches:
- main

jobs:
river-six-peer:
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
- name: Checkout freenet-core
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Checkout river
uses: actions/checkout@v4
with:
repository: freenet/river
ref: main
path: river-src

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- name: Run six-peer regression
working-directory: river-src
env:
FREENET_CORE_PATH: ${{ github.workspace }}
RUST_LOG: info
run: |
cargo test --test message_flow river_message_flow_over_freenet_six_peers_five_rounds -- --ignored --exact
Loading
Loading