Hi, I’ve just started using codecov witch php (symfony) and github actions.
Description
All my requests are getting stuck on processing…
Commit SHAs
d85d16d, 597fef5, c436f1c …
Repository
Private repo
link to codecov pannel
CI/CD or Build URL
name: PHPUNIT tests
on:
pull_request:
branches: [dev, main]
push:
branches: [dev, main]
jobs:
tests:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- uses: actions/checkout@v2
- name: Build and run docker images through docker-compose
run: docker-compose --profile db up -d
- name: Validate composer.json and composer.lock
run: docker exec g4te_php composer validate
- name: Install composer dependencies and init database through the init script
run: docker exec g4te_php init.sh
- name: Runs tests
run: docker exec g4te_php php phpunit/run_tests.php
- name: Upload coverage to Codecov
run: docker exec g4te_php codecov -t ${{ secrets.CODECOV_TOKEN }}
Uploader
Currently using bash but tried before with github actions but it couldn’t retrieve the script …
Codecov Output
_____ _
/ ____| | |
| | ___ __| | ___ ___ _____ __
| | / _ \ / _` |/ _ \/ __/ _ \ \ / /
| |___| (_) | (_| | __/ (_| (_) \ V /
\_____\___/ \__,_|\___|\___\___/ \_/
Bash-1.0.4
==> git version 2.32.0 found
==> curl 7.77.0 (x86_64-alpine-linux-musl) libcurl/7.77.0 OpenSSL/1.1.1k zlib/1.2.11 brotli/1.0.9 nghttp2/1.43.0
Release-Date: 2021-05-26
Protocols: dict file ftp ftps gopher gophers http https imap imaps mqtt pop3 pop3s rtsp smb smbs smtp smtps telnet tftp
Features: alt-svc AsynchDNS brotli HSTS HTTP2 HTTPS-proxy IPv6 Largefile libz NTLM NTLM_WB SSL TLS-SRP UnixSockets
x> No CI provider detected.
Testing inside Docker? http://docs.codecov.io/docs/testing-with-docker
Testing with Tox? https://docs.codecov.io/docs/python#section-testing-with-tox
project root: .
Yaml not found, that's ok! Learn more at http://docs.codecov.io/docs/codecov-yaml
==> Running gcov in . (disable via -X gcov)
==> Python coveragepy not found
==> Searching for coverage reports in:
+ .
-> Found 1 reports
==> Detecting git/mercurial file structure
==> Reading reports
+ ./clover.xml bytes=42272
==> Appending adjustments
https://docs.codecov.io/docs/fixing-reports
+ Found adjustments
==> Gzipping contents
36.0K /tmp/codecov.DIdPLb.gz
==> Uploading reports
url: https://codecov.io
query: branch=&commit=d85d16d1248441c371188d49f7f5c0cb2020fb2b&build=&build_url=&name=&tag=&slug=4gate-btc%2F4gate&service=&flags=&pr=&job=&cmd_args=t
-> Pinging Codecov
https://codecov.io/upload/v4?package=bash-1.0.4&branch=&commit=d85d16d1248441c371188d49f7f5c0cb2020fb2b&build=&build_url=&name=&tag=&slug=4gate-btc%2F4gate&service=&flags=&pr=&job=&cmd_args=t
-> Uploading to
https://storage.googleapis.com/codecov/v4/raw/2021-07-14/9B3C8088538D4766F2000231F3DC28C8/d85d16d1248441c371188d49f7f5c0cb2020fb2b/475dfef3-983d-4f45-a125-882de173d980.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=GOOG1EKKHVKCKHW7KBCGM7IHR55T63V2PAVJWLVFNITJHDU5G6R5IRN3LMWJA%2F20210714%2FUS%2Fs3%2Faws4_request&X-Amz-Date=20210714T213906Z&X-Amz-Expires=10&X-Amz-SignedHeaders=host&X-Amz-Signature=5ca5b5635f800c01d269105628e9877b8ce0674b871bada2e78a2d58b5927e01
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 36158 0 0 100 36158 0 174k --:--:-- --:--:-- --:--:-- 175k
-> Reports have been successfully queued for processing at https://codecov.io/github/4gate-btc/4gate/commit/d85d16d1248441c371188d49f7f5c0cb2020fb2b
Expected Results
Please provide what you expect to have happened (e.g. a file that has missing coverage on a particular line).
Actual Results
Recieved on codecov panel but stuck on processing
Additional Information
None