-
Notifications
You must be signed in to change notification settings - Fork 80
94 lines (77 loc) · 2.44 KB
/
slowtest.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
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:
CARGO_TERM_COLOR: always
RUST_LOG: info,libp2p=off,node=error
jobs:
slow-tests-sqlite:
runs-on: ubuntu-latest
steps:
# These tests need the `anvil` binary provided by foundry
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- uses: taiki-e/install-action@nextest
- name: Checkout Repository
uses: actions/checkout@v4
- name: Configure Environment
run: PATH="$PWD/target/release:$PATH"
- name: Enable Rust Caching
uses: Swatinem/rust-cache@v2
with:
cache-all-crates: true
- name: Build
run: |
cargo build --locked --bin diff-test --release
cargo nextest run --locked --release --workspace --features embedded-db --no-run
timeout-minutes: 90
- name: Slow Test
env:
NEXTEST_PROFILE: slow
run: cargo nextest run --locked --release --workspace --features embedded-db --verbose --no-fail-fast --nocapture
timeout-minutes: 40
slow-tests-postgres:
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/release:$PATH"
- name: Enable Rust Caching
uses: Swatinem/rust-cache@v2
with:
cache-all-crates: true
- name: Build
run: |
cargo build --locked --bin diff-test --release
cargo nextest run --locked --release --workspace --no-run
timeout-minutes: 90
- name: Slow Test
env:
NEXTEST_PROFILE: slow
run: cargo nextest run --locked --release --workspace --verbose --no-fail-fast --nocapture
timeout-minutes: 40