【发布时间】:2020-04-07 09:03:29
【问题描述】:
我正试图弄清楚如何将我的笑话代码覆盖率报告上传到 codecov。 从那里documentation:
bash <(curl -s https://codecov.io/bash) -t token
所以我尝试使用以下cloudbuild.yaml从云构建步骤运行 bash 脚本
steps:
- name: node:10.15.1
entrypoint: npm
args: ["install"]
- name: node:10.15.1
entrypoint: npm
args: ["test", "--", "--coverage"]
- name: 'gcr.io/cloud-builders/curl'
entrypoint: bash
args: ['<(curl -s https://codecov.io/bash)', '-t', '$_CODECOV_TOKEN']
- name: node:10.15.1
entrypoint: npm
args: ["run", "build:production"]
我收到以下错误:
Step #2: bash: <(curl -s https://codecov.io/bash): No such file or directory
显然是因为 <(curl -s https://codecov.io/bash) 在我希望它被执行时被解释为字符串。
编辑:
我已将构建步骤更改为以下内容:
- name: "gcr.io/cloud-builders/curl"
entrypoint: bash
args: ["./scripts/codecov-upload.bash", "$_CODECOV_TOKEN"]
并添加了一个文件codecov-upload.bash
bash <(curl -s https://codecov.io/bash) -t $1
运行我的云构建时,codecov bash 上传器成功启动。但是,我无法将报告上传到 clodecov。
这是来自 codecov bash 上传器的日志:
Step #2: Test Suites: 1 passed, 1 total
Step #2: Tests: 1 passed, 1 total
Step #2: Snapshots: 1 passed, 1 total
Step #2: Time: 28.981s
Step #2: Ran all test suites.
Finished Step #2
Starting Step #3
Step #3: Already have image (with digest): gcr.io/cloud-builders/curl
Step #3: /dev/fd/63: option requires an argument -- t
Step #3:
Step #3: _____ _
Step #3: / ____| | |
Step #3: | | ___ __| | ___ ___ _____ __
Step #3: | | / _ \ / _` |/ _ \/ __/ _ \ \ / /
Step #3: | |___| (_) | (_| | __/ (_| (_) \ V /
Step #3: \_____\___/ \__,_|\___|\___\___/ \_/
Step #3: Bash-tbd
Step #3:
Step #3:
Step #3: x> No CI provider detected.
Step #3: Testing inside Docker? http://docs.codecov.io/docs/testing-with-docker
Step #3: Testing with Tox? https://docs.codecov.io/docs/python#section-testing-with-tox
Step #3: project root: .
Step #3: /dev/fd/63: line 897: git: command not found
Step #3: /dev/fd/63: line 897: hg: command not found
Step #3: Yaml not found, that's ok! Learn more at http://docs.codecov.io/docs/codecov-yaml
Step #3: ==> Running gcov in . (disable via -X gcov)
Step #3: ==> Python coveragepy not found
Step #3: ==> Searching for coverage reports in:
Step #3: + .
Step #3: -> Found 3 reports
Step #3: ==> Detecting git/mercurial file structure
Step #3: ==> Reading reports
Step #3: + ./coverage/clover.xml bytes=163786
Step #3: + ./coverage/coverage-final.json bytes=444241
Step #3: + ./coverage/lcov.info bytes=71582
Step #3: ==> Appending adjustments
Step #3: http://docs.codecov.io/docs/fixing-reports
Step #3: + Found adjustments
Step #3: ==> Gzipping contents
Step #3: ==> Uploading reports
Step #3: url: https://codecov.io
Step #3: query: branch=&commit=&build=&build_url=&name=&tag=&slug=&service=&flags=&pr=&job=
Step #3: -> Pinging Codecov
Step #3: https://codecov.io/upload/v4?package=bash-tbd&token=secret&branch=&commit=&build=&build_url=&name=&tag=&slug=&service=&flags=&pr=&job=
Step #3: -> Uploading
Step #3: X> Failed to upload
Step #3: -> Sleeping for 30s and trying again...
Step #3: -> Pinging Codecov
Step #3: https://codecov.io/upload/v4?package=bash-tbd&token=secret&branch=&commit=&build=&build_url=&name=&tag=&slug=&service=&flags=&pr=&job=
Step #3: -> Uploading
Step #3: X> Failed to upload
Step #3: -> Sleeping for 30s and trying again...
Step #3: -> Pinging Codecov
Step #3: https://codecov.io/upload/v4?package=bash-tbd&token=secret&branch=&commit=&build=&build_url=&name=&tag=&slug=&service=&flags=&pr=&job=
Step #3: -> Uploading
Step #3: X> Failed to upload
Step #3: -> Sleeping for 30s and trying again...
Step #3: -> Pinging Codecov
Step #3: https://codecov.io/upload/v4?package=bash-tbd&token=secret&branch=&commit=&build=&build_url=&name=&tag=&slug=&service=&flags=&pr=&job=
Step #3: -> Uploading
Step #3: X> Failed to upload
Step #3: -> Sleeping for 30s and trying again...
Step #3: -> Uploading to Codecov
Step #3: HTTP 400
Step #3: missing required properties: ['commit']
Finished Step #3
Starting Step #4
Step #4: Already have image: node:10.15.1
Step #4:
我注意到日志中有两件事:
1. Step #3: /dev/fd/63: option requires an argument -- t
2. Step #3: missing required properties: ['commit']
在搜索修复数字 2 时,我在 SO 上找到以下内容: codecov.io gives error in combination with Bitbucket pipelines
答案似乎是我的容器中没有安装 git。
所以我尝试使用 docker 制作自定义容器映像:
Dockerfile:
FROM gcr.io/cloud-builders/curl
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y git
所以我构建了图像:
build -t "gcr.io/[PROJECT_ID]/builder .
并更新我的构建步骤以使用此图像:
- 名称:“gcr.io/$PROJECT_ID/builder” 入口点:bash 参数:["./scripts/codecov-upload.bash"]
但是使用使用该 dockerfile 创建的图像会返回相同的错误。
也许该自定义映像的 Dockerfile 不正确?还是我错过了其他东西?
我的代码在 github 上可用:https://github.com/thdk/timesheets/tree/feat/112-1
【问题讨论】:
标签: docker jestjs yaml code-coverage google-cloud-build