File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 49
49
if : " ! matrix.build-net-tokio"
50
50
run : cargo build --verbose --color always -p lightning
51
51
- name : Build Block Sync Clients on Rust ${{ matrix.toolchain }} with features
52
- if : matrix.build-net-tokio
52
+ if : " matrix.build-net-tokio && !matrix.coverage"
53
+ run : |
54
+ cd lightning-block-sync
55
+ cargo build --verbose --color always --features rest-client
56
+ cargo build --verbose --color always --features rpc-client
57
+ cargo build --verbose --color always --features rpc-client,rest-client
58
+ cargo build --verbose --color always --features rpc-client,rest-client,tokio
59
+ cd ..
60
+ - name : Build Block Sync Clients on Rust ${{ matrix.toolchain }} with features and full code-linking for coverage generation
61
+ if : matrix.coverage
53
62
run : |
54
63
cd lightning-block-sync
55
64
RUSTFLAGS="-C link-dead-code" cargo build --verbose --color always --features rest-client
You can’t perform that action at this time.
0 commit comments