actions-rs/grcov

Generater report failed

tu6ge opened this issue · 1 comments

tu6ge commented

Do the checklist before filing an issue:

Description

In today, I am runing my github action with actions-rs/grcov@v0.1, then run coverallsapp/github-action , it is return Error :

Error: ENOENT: no such file or directory, open '/tmp/grcov-report-n2jbbrhhsc'

first time, I thought it was their ( coverallsapp/github-action) problem. then I tried to change it settings multiple times :

  • one
- name: Coveralls upload
        uses: coverallsapp/github-action@v1
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          path-to-lcov: ${{ steps.coverage.outputs.report }}
  • two
 - name: Coveralls upload
        uses: coverallsapp/github-action@master
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          path-to-lcov: ${{ steps.coverage.outputs.report }}
  • three
 - name: Coveralls upload
        uses: coverallsapp/github-action@v2
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          file: ${{ steps.coverage.outputs.report }}
  • four
 - name: Coveralls upload
        uses: coverallsapp/github-action@v2
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}

They all failed

Workflow code

Listed up

Action output

This is some time github action log : https://github.com/tu6ge/oss-rs/actions

Expected behavior

success output report

Additional context

no more info