Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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

on:
workflow_dispatch:
push:
branches:
- stack/connect-transport-rewrite
- 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