Skip to content

Fixes artifact consolidation #1794

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,11 +181,6 @@ jobs:
- run:
name: Run Tests
command: ./gradlew lint test
- run:
name: Consolidate artifacts
command: |
mkdir -p build/test-results/
find . -type f -regex ".*/build/test-results/.*xml" -exec cp --parents {} build/test-results/ \;
- run:
name: Kover HTML
command: ./gradlew purchases:koverHtmlReportDefaultsRelease
Expand All @@ -195,6 +190,11 @@ jobs:
- codecov/upload:
file: purchases/build/reports/kover/reportDefaultsRelease.xml
- android/save-build-cache
- run:
name: Consolidate artifacts
command: |
mkdir -p build/reports/
find . -type f -path "*/build/reports/*" | grep -v 'paparazzi' | xargs -I {} cp --parents {} build/reports/
- store_artifacts:
path: build/reports
- run:
Expand Down