Add a pop of colour

This commit is contained in:
Franck Royer 2020-04-24 15:06:15 +10:00
parent 355dbbcde9
commit 06419a2608
No known key found for this signature in database
GPG key ID: A82ED75A8DFC50A4

View file

@ -35,16 +35,16 @@ jobs:
profile: minimal profile: minimal
- name: Build on Rust ${{ matrix.toolchain }} with net-tokio - name: Build on Rust ${{ matrix.toolchain }} with net-tokio
if: matrix.build-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 }} - name: Build on Rust ${{ matrix.toolchain }}
if: "! matrix.build-net-tokio" 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 - name: Test on Rust ${{ matrix.toolchain }} with net-tokio
if: matrix.build-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 }} - name: Test on Rust ${{ matrix.toolchain }}
if: "! matrix.build-net-tokio" 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 - name: Install deps for kcov
if: matrix.coverage if: matrix.coverage
run: | run: |
@ -92,6 +92,6 @@ jobs:
sudo apt-get update sudo apt-get update
sudo apt-get -y install build-essential binutils-dev libunwind-dev sudo apt-get -y install build-essential binutils-dev libunwind-dev
- name: Fuzz test on Rust ${{ matrix.TOOLCHAIN }} - 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 - name: Generate fuzz report
run: cd fuzz && ./ci-fuzz.sh run: cd fuzz && ./ci-fuzz.sh