-
Notifications
You must be signed in to change notification settings - Fork 5
45 lines (38 loc) · 1.16 KB
/
Copy pathintegration.yml
File metadata and controls
45 lines (38 loc) · 1.16 KB
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
name: Integration
on:
push:
branches: [ master ]
pull_request:
workflow_dispatch:
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
RBMT_LOG_LEVEL: verbose
RUST_BACKTRACE: 1
jobs:
integration:
name: ${{ matrix.name }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- name: Regtest Client
example: client_regtest
steps:
- name: Checkout Repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Setup Rust Cache
uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1
with:
cache-on-failure: false
- name: Setup cargo-rbmt
uses: ./.github/actions/setup-rbmt
- name: Run ${{ matrix.name }} Example
run: cargo rbmt run -- run --release --example ${{ matrix.example }}
timeout-minutes: 10
env:
BLOCKS: 50