mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-24 23:08:36 +01:00
Add a pop of colour
This commit is contained in:
parent
355dbbcde9
commit
06419a2608
1 changed files with 5 additions and 5 deletions
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
|
@ -35,16 +35,16 @@ jobs:
|
|||
profile: minimal
|
||||
- name: Build on Rust ${{ matrix.toolchain }} with net-tokio
|
||||
if: matrix.build-net-tokio
|
||||
run: RUSTFLAGS="-C link-dead-code" cargo build --verbose
|
||||
run: RUSTFLAGS="-C link-dead-code" cargo build --verbose --color always
|
||||
- name: Build on Rust ${{ matrix.toolchain }}
|
||||
if: "! matrix.build-net-tokio"
|
||||
run: RUSTFLAGS="-C link-dead-code" cargo build --verbose -p lightning
|
||||
run: RUSTFLAGS="-C link-dead-code" cargo build --verbose --color always -p lightning
|
||||
- name: Test on Rust ${{ matrix.toolchain }} with net-tokio
|
||||
if: matrix.build-net-tokio
|
||||
run: RUSTFLAGS="-C link-dead-code" cargo test --verbose
|
||||
run: RUSTFLAGS="-C link-dead-code" cargo test --verbose --color always
|
||||
- name: Test on Rust ${{ matrix.toolchain }}
|
||||
if: "! matrix.build-net-tokio"
|
||||
run: RUSTFLAGS="-C link-dead-code" cargo test --verbose -p lightning
|
||||
run: RUSTFLAGS="-C link-dead-code" cargo test --verbose --color always -p lightning
|
||||
- name: Install deps for kcov
|
||||
if: matrix.coverage
|
||||
run: |
|
||||
|
@ -92,6 +92,6 @@ jobs:
|
|||
sudo apt-get update
|
||||
sudo apt-get -y install build-essential binutils-dev libunwind-dev
|
||||
- name: Fuzz test on Rust ${{ matrix.TOOLCHAIN }}
|
||||
run: cd fuzz && cargo test --verbose
|
||||
run: cd fuzz && cargo test --verbose --color always
|
||||
- name: Generate fuzz report
|
||||
run: cd fuzz && ./ci-fuzz.sh
|
||||
|
|
Loading…
Add table
Reference in a new issue