From 9833b24fcc02050df9febdf879fb19f8eebba11b Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Sat, 15 Jun 2024 14:14:08 +0200 Subject: [PATCH] ci: temporarily disable codecov workflow --- .github/workflows/ci.yml | 60 ++++++++++++++++++++-------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e8272c1..ad26f617 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,36 +75,36 @@ jobs: --feature-powerset --exclude-features nightly,generic_const_exprs \ --depth 1 - codecov: - # See - name: Coverage - runs-on: ubuntu-latest - timeout-minutes: 30 - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@nightly - with: - components: llvm-tools-preview - - uses: Swatinem/rust-cache@v2 - - uses: taiki-e/install-action@cargo-llvm-cov - - name: Generate code coverage - env: - # Covered tests are slower, so reduce the test load. (We also shouldn't - # depend too much on case generation for coverage). - PROPTEST_CASES: 5 - run: | - # Generate profiles, but do not merge them - cargo llvm-cov --no-report --workspace --all-features --all-targets -- --nocapture - cargo llvm-cov --no-report --workspace --all-features --doc -- --nocapture - - name: Merge profiles - run: cargo llvm-cov --no-run --lcov --output-path lcov.info - - name: Submit to codecov.io - uses: codecov/codecov-action@v3 - with: - token: ${{ secrets.CODECOV_TOKEN }} # Optional for public repos - files: lcov.info - fail_ci_if_error: true - verbose: true + # codecov: + # # See + # name: Coverage + # runs-on: ubuntu-latest + # timeout-minutes: 30 + # steps: + # - uses: actions/checkout@v4 + # - uses: dtolnay/rust-toolchain@nightly + # with: + # components: llvm-tools-preview + # - uses: Swatinem/rust-cache@v2 + # - uses: taiki-e/install-action@cargo-llvm-cov + # - name: Generate code coverage + # env: + # # Covered tests are slower, so reduce the test load. (We also shouldn't + # # depend too much on case generation for coverage). + # PROPTEST_CASES: 5 + # run: | + # # Generate profiles, but do not merge them + # cargo llvm-cov --no-report --workspace --all-features --all-targets -- --nocapture + # cargo llvm-cov --no-report --workspace --all-features --doc -- --nocapture + # - name: Merge profiles + # run: cargo llvm-cov --no-run --lcov --output-path lcov.info + # - name: Submit to codecov.io + # uses: codecov/codecov-action@v3 + # with: + # token: ${{ secrets.CODECOV_TOKEN }} # Optional for public repos + # files: lcov.info + # fail_ci_if_error: true + # verbose: true clippy: name: Clippy