Coveralls GitHub操作-错误:找不到Lcov文件

问题描述

我正在使用GitHub Action配置Coveralls。

我进行了搜索,但找不到如何生成./coverage/lcov.info文件。
当操作运行时,由于我没有这样的文件,所以我得到了

Using lcov file: ./coverage/lcov.info  
Error: Lcov file not found.

我尝试通过IntelliJ使用Coverage运行测试,但是我只能生成HTML格式的输出。

如何生成lcov.info文件?

编辑-根据评论的要求添加我的工作流程以供参考

# For most projects,this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,# or to provide custom queries or build logic.
name: "CodeQL"

on:
  push:
    branches: [master]
  pull_request:
    # The branches below must be a subset of the branches above
    branches: [master]
  schedule:
    - cron: '0 14 * * 4'

jobs:
  analyze:
    name: Analyze
    runs-on: ubuntu-latest

    strategy:
      fail-fast: false
      matrix:
        # Override automatic language detection by changing the below list
        # Supported options are ['csharp','cpp','go','java','javascript','python']
        language: ['java']
        # Learn more...
        # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
        java: [11]

    steps:
    - name: Checkout repository
      uses: actions/checkout@v2
      with:
        # We must fetch at least the immediate parents so that if this is
        # a pull request then we can checkout the head.
        fetch-depth: 2

    # If this run was triggered by a pull request event,then checkout
    # the head of the pull request instead of the merge commit.
    - run: git checkout HEAD^2
      if: ${{ github.event_name == 'pull_request' }}

    - name: Set up Java JDK
      uses: actions/setup-java@v1
      with:
        java-version: ${{ matrix.java }}

    # Initializes the CodeQL tools for scanning.
    - name: Initialize CodeQL
      uses: github/codeql-action/init@v1
      with:
        languages: ${{ matrix.language }}
        # If you wish to specify custom queries,you can do so here or in a config file.
        # By default,queries listed here will override any specified in a config file. 
        # Prefix the list here with "+" to use these queries and those in the config file.
        # queries: ./path/to/local/query,your-org/your-repo/queries@main

    # Autobuild attempts to build any compiled languages  (C/C++,C#,or Java).
    # If this step fails,then you should remove it and run the build manually (see below)
    - name: Autobuild
      uses: github/codeql-action/autobuild@v1

    # ℹ️ Command-line programs to run using the OS shell.
    # ? https://git.io/JvXDl

    # ✏️ If the Autobuild fails above,remove it and uncomment the following three lines
    #    and modify them (or add more) to build your code if your project
    #    uses a compiled language

    #- run: |
    #   make bootstrap
    #   make release

    - name: Perform CodeQL Analysis
      uses: github/codeql-action/analyze@v1

解决方法

我在 GitHub Actions 上遇到了同样的错误(参见 this build log),但我有一个稍微不同的 GitHub Action workflow.yml(这在 Java/Maven 设置中可能更“默认”) :

name: build

on: [push]

jobs:
  coverage:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-java@v1
        with:
          java-version: 15
      - run: mvn -B test -P coverage --no-transfer-progress

      - uses: coverallsapp/github-action@master
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}

并在我的 pom.xml 中为 jacoco-maven-plugincoveralls-maven-plugin 提供以下配置:

<profiles>
    <profile>
        <id>coverage</id>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.jacoco</groupId>
                    <artifactId>jacoco-maven-plugin</artifactId>
                    <version>${build-plugin.jacoco.version}</version>
                    <executions>
                        <!-- Prepares the property pointing to the JaCoCo
                        runtime agent which is passed as VM argument when Maven the Surefire plugin
                        is executed. -->
                        <execution>
                            <id>pre-unit-test</id>
                            <goals>
                                <goal>prepare-agent</goal>
                            </goals>
                        </execution>
                        <!-- Ensures that the code coverage report for
                        unit tests is created after unit tests have been run. -->
                        <execution>
                            <id>post-unit-test</id>
                            <phase>test</phase>
                            <goals>
                                <goal>report</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
                <plugin>
                    <groupId>org.eluder.coveralls</groupId>
                    <artifactId>coveralls-maven-plugin</artifactId>
                    <version>${build-plugin.coveralls.version}</version>
                </plugin>
            </plugins>
        </build>
    </profile>
</profiles>

在深入研究该主题后,我发现了 coverallsapp/github-action 中的 this issue,其中基本上说现在没有对 JaCoCo 与 Coveralls Action 的支持。

因此,除了切换到 https://codecov.io 和匹配的 https://github.com/codecov/codecov-action(如 the cucumber-jvm Team also did)之外,我没有其他选择。我们可以从 coveralls-maven-plugin 中删除 pom.xml。我的 workflow.yml 现在看起来像这样:

name: build

on: [push]

jobs:
  coverage:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-java@v1
        with:
          java-version: 15
      - run: mvn -B test -P coverage --no-transfer-progress

      - uses: codecov/codecov-action@v1
        with:
          file: ./**/target/site/jacoco/jacoco.xml
          name: codecov

这里还有一个完全可以理解的示例项目:https://github.com/codecentric/cxf-spring-boot-starter/blob/master/.github/workflows/build.yml 我现在成功地使用了 codegov。

,

今天,相同的配置仍然有效,我想在GitHub端进行了一些更改。

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...