Skip to content

Fetch stake table #1344

Fetch stake table

Fetch stake table #1344

Workflow file for this run

name: Slow Test
on:
push:
branches:
- main
- release-*
tags:
# YYYYMMDD
- "20[0-9][0-9][0-1][0-9][0-3][0-9]*"
schedule:
- cron: "0 0 * * 1"
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ !contains(github.ref, 'main')}}
# Build test binary with `testing` feature, which requires `hotshot_example` config
env:
RUSTFLAGS: '--cfg async_executor_impl="async-std" --cfg async_channel_impl="async-std" --cfg hotshot_example'
CARGO_TERM_COLOR: always
RUST_LOG: info,libp2p=off,node=error
jobs:
slow-tests:
runs-on: ubuntu-latest
steps:
- name: Fix submodule permissions check
run: |
git config --global --add safe.directory '*'
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- uses: taiki-e/install-action@nextest
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Configure Environment
run: PATH="$PWD/target/debug:$PATH"
- name: Enable Rust Caching
uses: Swatinem/rust-cache@v2
with:
cache-all-crates: true
- name: Build
run: |
cargo build --locked --bin diff-test --profile test
cargo nextest run --locked --workspace --all-features --no-run
timeout-minutes: 90
- name: Slow Test
env:
NEXTEST_PROFILE: slow
run: cargo nextest run --locked --workspace --all-features --verbose --no-fail-fast --nocapture
timeout-minutes: 40