From 554cb0ffce7d2f23a0286e12e4aa40f1c46e9849 Mon Sep 17 00:00:00 2001 From: Orbital Date: Tue, 20 Jun 2023 19:09:07 -0500 Subject: [PATCH] actions: upload lnd logs using github actions --- .github/workflows/main.yml | 32 +++++++------------------------- 1 file changed, 7 insertions(+), 25 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d3352fb1..fade8a38 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,16 +15,18 @@ jobs: - uses: actions-rs/toolchain@v1 with: toolchain: stable - - uses: actions-rs/cargo@v1 - name: cargo build - with: - command: build - args: --release --all-features - uses: actions-rs/cargo@v1 name: cargo test with: command: test args: --all-targets --benches -- --test-threads=1 + - run: ls /tmp + - name: Archive lnd logs + uses: actions/upload-artifact@v3 + with: + name: lnd-logs + path: | + /tmp/lnd_logs - uses: actions-rs/cargo@v1 name: cargo fmt with: @@ -35,23 +37,3 @@ jobs: with: command: clippy args: -- --deny warnings - coverage: - name: LNDK Code Coverage - runs-on: ubuntu-latest - env: - CARGO_TERM_COLOR: always - steps: - - uses: actions/checkout@v3 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - - name: Install cargo-llvm-cov - uses: taiki-e/install-action@cargo-llvm-cov - - name: Generate code coverage - run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 - with: - files: lcov.info - fail_ci_if_error: true - token: ${{ secrets.CODECOV_TOKEN }}