ci: collate codecov reports before uploading
Currently due to flake partial reports are submitting which results in constant fluctuation of coverage reports. Change: First collect coverage and if all builds pass then submit it.
This commit is contained in:
parent
5ac3e7e16e
commit
c14c513214
15
.github/workflows/server-tests-mariadb.yml
vendored
15
.github/workflows/server-tests-mariadb.yml
vendored
@ -118,10 +118,23 @@ jobs:
|
|||||||
CI_BUILD_ID: ${{ github.run_id }}
|
CI_BUILD_ID: ${{ github.run_id }}
|
||||||
ORCHESTRATOR_URL: http://test-orchestrator.frappe.io
|
ORCHESTRATOR_URL: http://test-orchestrator.frappe.io
|
||||||
|
|
||||||
|
- name: Upload coverage data
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: coverage-${{ matrix.container }}
|
||||||
|
path: /home/runner/frappe-bench/sites/coverage.xml
|
||||||
|
|
||||||
|
coverage:
|
||||||
|
name: Coverage Wrap Up
|
||||||
|
needs: test
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Download artifacts
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
|
||||||
- name: Upload coverage data
|
- name: Upload coverage data
|
||||||
uses: codecov/codecov-action@v2
|
uses: codecov/codecov-action@v2
|
||||||
with:
|
with:
|
||||||
name: MariaDB
|
name: MariaDB
|
||||||
fail_ci_if_error: true
|
fail_ci_if_error: true
|
||||||
files: /home/runner/frappe-bench/sites/coverage.xml
|
|
||||||
verbose: true
|
verbose: true
|
||||||
|
@ -21,7 +21,6 @@ coverage:
|
|||||||
comment:
|
comment:
|
||||||
layout: "diff, files"
|
layout: "diff, files"
|
||||||
require_changes: true
|
require_changes: true
|
||||||
after_n_builds: 3
|
|
||||||
|
|
||||||
ignore:
|
ignore:
|
||||||
- "erpnext/demo"
|
- "erpnext/demo"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user