From b22d95ff904f6569ffd8ecbf96b76bfbcb1532ff Mon Sep 17 00:00:00 2001 From: Leonardo Lima Date: Wed, 4 Sep 2024 11:01:44 -0300 Subject: [PATCH 1/4] deps(ci): bump `actions/upload-artifact` to `v4` --- .github/workflows/code_coverage.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/code_coverage.yml b/.github/workflows/code_coverage.yml index f5d401e3..4d449e36 100644 --- a/.github/workflows/code_coverage.yml +++ b/.github/workflows/code_coverage.yml @@ -49,13 +49,12 @@ jobs: run: mkdir coverage; grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '/*' -o ./coverage/lcov.info - name: Generate HTML coverage report run: genhtml -o coverage-report.html ./coverage/lcov.info - - name: Coveralls upload uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} - name: Upload artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: coverage-report path: coverage-report.html From 33a6f211fcba01bedd909475494454ee60895e50 Mon Sep 17 00:00:00 2001 From: Leonardo Lima Date: Wed, 4 Sep 2024 11:04:09 -0300 Subject: [PATCH 2/4] deps(ci): bump `actions/checkout` to `v4` --- .github/workflows/code_coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code_coverage.yml b/.github/workflows/code_coverage.yml index 4d449e36..4d965bb3 100644 --- a/.github/workflows/code_coverage.yml +++ b/.github/workflows/code_coverage.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install lcov tools run: sudo apt-get install lcov -y - name: Install rustup From cec57f64f2b3dcee895854d61747fd3462604fc3 Mon Sep 17 00:00:00 2001 From: Leonardo Lima Date: Wed, 4 Sep 2024 11:02:28 -0300 Subject: [PATCH 3/4] chore: remove bdk repository related comment --- .github/workflows/code_coverage.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/code_coverage.yml b/.github/workflows/code_coverage.yml index 4d965bb3..f2ff1068 100644 --- a/.github/workflows/code_coverage.yml +++ b/.github/workflows/code_coverage.yml @@ -38,12 +38,6 @@ jobs: - name: Install grcov run: if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install grcov; fi - name: Test - # WARNING: this is not testing the following features: test-esplora, test-hardware-signer, async-interface - # This is because some of our features are mutually exclusive, and generating various reports and - # merging them doesn't seem to be working very well. - # For more info, see: - # - https://github.com/bitcoindevkit/bdk/issues/696 - # - https://github.com/bitcoindevkit/bdk/pull/748#issuecomment-1242721040 run: cargo test -- --test-threads=1 - name: Run grcov run: mkdir coverage; grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '/*' -o ./coverage/lcov.info From 7321a5dd578ebc77d33cdd8b55d2948d9fcf1162 Mon Sep 17 00:00:00 2001 From: Leonardo Lima Date: Thu, 5 Sep 2024 12:49:41 -0300 Subject: [PATCH 4/4] fix(ci): pin `tokio-util` to `0.7.11` --- .github/workflows/cont_integration.yml | 1 + README.md | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 729922e7..d7e4a92b 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -59,6 +59,7 @@ jobs: cargo update -p home --precise 0.5.5 cargo update -p url --precise "2.5.0" cargo update -p tokio --precise "1.38.1" + cargo update -p tokio-util --precise "0.7.11" - name: Build run: cargo build --features ${{ matrix.features }} --no-default-features - name: Test diff --git a/README.md b/README.md index 0a116e9f..d1f73977 100644 --- a/README.md +++ b/README.md @@ -24,4 +24,5 @@ cargo update -p time --precise "0.3.20" cargo update -p home --precise 0.5.5 cargo update -p url --precise "2.5.0" cargo update -p tokio --precise "1.38.1" +cargo update -p tokio-util --precise "0.7.11" ``` \ No newline at end of file