All the commits stuck on “processing” stage in Codecov

Description

All the commits are stuck on the “Processing” stage.

Commit SHAs:
921ee258cd400f7da6848c6d06f385afd70ed932
55aad663fe59b698130e75981441212c49fad2a5
d25aec0953b94ee2a2e4d7c1a956ee41c9c7b504

Codecov Output

Please provide the full output of running the uploader on your CI/CD. This will typically have the Codecov logo as ASCII.

Run codecov/codecov-action@v3
==> linux OS detected
https://uploader.codecov.io/latest/linux/codecov.SHA256SUM
==> SHASUM file signed by key id 806bb28aed779869
==> Uploader SHASUM verified (0c9b79119b0d8dbe7aaf460dc3bd7c3094ceda06e5ae32b0d11a8ff56e2cc5c5  codecov)
==> Running version latest
==> Running version v0.6.1
/home/runner/work/_actions/codecov/codecov-action/v3/dist/codecov -n  -Q github-action-3.1.4 -Z -f **/build/reports/jacoco/test/jacocoTestReport.xml
[2023-06-28T08:52:26.754Z] ['info'] 
     _____          _
    / ____|        | |
   | |     ___   __| | ___  ___ _____   __
   | |    / _ \ / _` |/ _ \/ __/ _ \ \ / /
   | |___| (_) | (_| |  __/ (_| (_) \ V /
    \_____\___/ \__,_|\___|\___\___/ \_/

  Codecov report uploader 0.6.1
[2023-06-28T08:52:26.765Z] ['info'] => Project root located at: /home/runner/work/promotions/promotions
[2023-06-28T08:52:26.766Z] ['info'] ->  Token found by environment variables
[2023-06-28T08:52:26.778Z] ['info'] Searching for coverage files...
[2023-06-28T08:52:27.229Z] ['info'] Warning: Some files passed via the -f flag would normally be excluded from search.
[2023-06-28T08:52:27.229Z] ['info'] If Codecov encounters issues processing your reports, please review https://docs.codecov.com/docs/supported-report-formats
[2023-06-28T08:52:27.229Z] ['info'] => Found 3 possible coverage files:
  commons/domain/build/reports/jacoco/test/jacocoTestReport.xml
  growthcards/domain/build/reports/jacoco/test/jacocoTestReport.xml
  promo-system/domain/build/reports/jacoco/test/jacocoTestReport.xml
[2023-06-28T08:52:27.230Z] ['info'] Processing /home/runner/work/promotions/promotions/commons/domain/build/reports/jacoco/test/jacocoTestReport.xml...
[2023-06-28T08:52:27.232Z] ['info'] Processing /home/runner/work/promotions/promotions/growthcards/domain/build/reports/jacoco/test/jacocoTestReport.xml...
[2023-06-28T08:52:27.233Z] ['info'] Processing /home/runner/work/promotions/promotions/promo-system/domain/build/reports/jacoco/test/jacocoTestReport.xml...
[2023-06-28T08:52:27.240Z] ['info'] Detected GitHub Actions as the CI provider.
[2023-06-28T08:52:27.511Z] ['info'] Pinging Codecov: https://codecov.io/upload/v4?package=github-action-3.1.4-uploader-0.6.1&token=*******&branch=coverage-ci&build=5399108508&build_url=https%3A%2F%2Fgithub.com%2Fporterin%2Fpromotions%2Factions%2Fruns%2F5399108508&commit=d25aec0953b94ee2a2e4d7c1a956ee41c9c7b504&job=Test+Coverage&pr=&service=github-actions&slug=porterin%2Fpromotions&name=&tag=&flags=&parent=
[2023-06-28T08:52:27.678Z] ['info'] https://app.codecov.io/github/porterin/promotions/commit/d25aec0953b94ee2a2e4d7c1a956ee41c9c7b504
https://storage.googleapis.com/codecov/v4/raw/2023-06-28/2B63F1125E383D964BAA834912AE196A/d25aec0953b94ee2a2e4d7c1a956ee41c9c7b504/bc122e26-1f6c-4c83-b63a-32580632c279.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=GOOG1EJOGFN2JQ4OCTGA2MU5AEIT7OT5Z7HTFOAN2SPG4NWSN2UJYOY5U6LZQ%2F20230628%2FUS%2Fs3%2Faws4_request&X-Amz-Date=20230628T085227Z&X-Amz-Expires=10&X-Amz-SignedHeaders=host&X-Amz-Signature=b151b2bef1deb91786a17555f203e2a4418271c7aac0999eda6b9a81c06cf08d
[2023-06-28T08:52:27.679Z] ['info'] Uploading...
[2023-06-28T08:52:27.891Z] ['info'] {"status":"success","resultURL":"https://app.codecov.io/github/porterin/promotions/commit/d25aec0953b94ee2a2e4d7c1a956ee41c9c7b504"}


Reply

Expected Results

The reports should process

Actual Results

The requests are stuck on “Process” status

Additional Information

YML File

codecov:
  require_ci_to_pass: false

coverage:
  status:
    project:
      default:
        # basic
        target: auto # this means that the coverage of a commit must be the same or better than the base of the pull request
        threshold: 1% # allows the coverage to drop by up to 1% compared to the base of the pull request
    patch:
      default:
        target: 70%

Github Action

name: Test Coverage

on: push

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Code
        uses: actions/checkout@v2

      - name: Setup Java
        uses: actions/setup-java@v2
        with:
          java-version: '11'
          distribution: 'adopt'
          cache: 'gradle'

      - name: Configure AWS Credentials
        uses: aws-actions/configure-aws-credentials@v2
        with:
          aws-access-key-id: ${{ secrets.My-KEY}}
          aws-secret-access-key: ${{ secrets.My-KEY }}
          aws-region: <my-aws-region>

      - name: Run Tests with Jacoco
        run: ./gradlew clean build check
        
      - name: Archive code coverage results
        uses: actions/upload-artifact@v3
        with:
          name: jacoco-xml-report
          path: |
            **/build/reports/jacoco/test/jacocoTestReport.xml

      - name: Upload coverage to Codecov
        uses: codecov/codecov-action@v2
        env: 
          CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
        with:
          files: |
            **/build/reports/jacoco/test/jacocoTestReport.xml
          fail_ci_if_error: true

Codecov Output

@pratikdotexe I believe we may have been experiencing an issue at that time. Are you still seeing this issue? If so, can you provide a new commit SHA?

Same problem in our repo. All commits are stuck on “processing” stage in Codecov. Any updates about this problem ?

@antho please open a new topic for this