From f89fd4360514e936515f81d60e7ccd516d434d68 Mon Sep 17 00:00:00 2001 From: Andy Holmes Date: Mon, 15 Apr 2024 23:17:04 -0700 Subject: [PATCH] ci: drop the coveralls.io check This will keep failing and the coverage report is posted publicly, so just drop the dependency. --- .github/workflows/cd.yml | 9 +-------- .github/workflows/ci.yml | 9 +-------- 2 files changed, 2 insertions(+), 16 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 30c003cf7e..6febdbb9ea 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -30,14 +30,7 @@ jobs: test-coverage: true lcov-include: '${{ github.workspace }}/src/*' - - name: Report - continue-on-error: true - uses: coverallsapp/github-action@master - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - path-to-lcov: ${{ steps.test.outputs.coverage }} - - - name: Coverage + - name: Coverage Report continue-on-error: true uses: JamesIves/github-pages-deploy-action@releases/v4 with: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 254057d4d1..91aa5c496e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -213,20 +213,13 @@ jobs: name: Tests (${{ matrix.compiler }}, ${{ matrix.suite }}) path: ${{ steps.test.outputs.log }} - - name: Coverage (html) + - name: Coverage Report if: ${{ matrix.compiler == 'gcc' && matrix.suite == 'test' }} uses: actions/upload-artifact@v4 with: name: Tests (coverage) path: ${{ steps.test.outputs.coverage-html }} - - name: Coverage (coveralls.io) - if: ${{ matrix.compiler == 'gcc' && matrix.suite == 'test' }} - uses: coverallsapp/github-action@master - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - path-to-lcov: ${{ steps.test.outputs.coverage }} - installed-tests: name: Tests (Installed) needs: [pre-test]