Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 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
1750478
test: restore connect coverage and six-peer CI
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
46 changes: 46 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,52 @@ jobs:
run: cargo test --test ubertest --no-default-features --features trace,websocket,redb
working-directory: crates/core

six_peer_regression:
name: six-peer-regression
needs: test_all
runs-on: freenet-default-runner
timeout-minutes: 120

env:
FREENET_LOG: error

steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}

- uses: actions/checkout@v5
with:
fetch-depth: 0

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

- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable

- uses: Swatinem/rust-cache@v2
with:
workspaces: |
.
river-src

- 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

clippy_check:
name: Clippy

Expand Down
Loading
Loading