increase sample sizes for tests to hopefully avoid intermittent errors #2706
This file contains 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
name: CI | |
on: | |
push: | |
branches: [main] | |
paths-ignore: ["docs/**", "README.md"] | |
pull_request: | |
branches: [main] | |
paths-ignore: ["docs/**", "README.md"] | |
jobs: | |
test_all: | |
name: Test | |
runs-on: 64-core-256-gb-ubuntu-latest | |
strategy: | |
max-parallel: 1 | |
matrix: | |
args: ["--no-default-features --features trace,websocket,redb"] | |
env: | |
FREENET_LOG: error | |
CARGO_TARGET_DIR: ${{ github.workspace }}/target | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
targets: wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install stdlib packages | |
working-directory: stdlib/typescript | |
run: npm run dev.package | |
- name: Build | |
run: | | |
cargo build --locked | |
cargo install --path ./crates/core | |
cargo install --path ./crates/fdev | |
- name: Test - features | |
run: cargo test --workspace ${{ matrix.args }} | |
clippy_check: | |
name: Clippy | |
runs-on: ubuntu-latest | |
env: | |
FREENET_LOG: error | |
CARGO_TARGET_DIR: ${{ github.workspace }}/target | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
components: clippy | |
- uses: Swatinem/rust-cache@v2 | |
- name: clippy | |
run: cargo clippy -- -D warnings | |
fmt_check: | |
name: Fmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
- name: Check code formatting | |
run: cargo fmt -- --check |