Skip to content

Commit 0a10654

Browse files
authored
refactor(transport): replace handshake pipeline (#2065)
1 parent 746762f commit 0a10654

37 files changed

+3399
-4603
lines changed

.github/workflows/ci.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,52 @@ jobs:
8484
run: cargo test --test ubertest --no-default-features --features trace,websocket,redb
8585
working-directory: crates/core
8686

87+
six_peer_regression:
88+
name: six-peer-regression
89+
needs: test_all
90+
runs-on: freenet-default-runner
91+
timeout-minutes: 120
92+
93+
env:
94+
FREENET_LOG: error
95+
96+
steps:
97+
- name: Cancel Previous Runs
98+
uses: styfle/[email protected]
99+
with:
100+
access_token: ${{ github.token }}
101+
102+
- uses: actions/checkout@v5
103+
with:
104+
fetch-depth: 0
105+
106+
- name: Checkout river
107+
uses: actions/checkout@v5
108+
with:
109+
repository: freenet/river
110+
ref: main
111+
path: river-src
112+
113+
- uses: dtolnay/rust-toolchain@stable
114+
with:
115+
toolchain: stable
116+
117+
- uses: Swatinem/rust-cache@v2
118+
with:
119+
workspaces: |
120+
.
121+
river-src
122+
123+
- name: Run six-peer regression
124+
working-directory: river-src
125+
env:
126+
FREENET_CORE_PATH: ${{ github.workspace }}
127+
RUST_LOG: info
128+
run: >
129+
cargo test --test message_flow
130+
river_message_flow_over_freenet_six_peers_five_rounds
131+
-- --ignored --exact
132+
87133
clippy_check:
88134
name: Clippy
89135

0 commit comments

Comments
 (0)