Skip to content

Commit

Permalink
Store more artifacts after build in Circle CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vgaidarji committed Jan 7, 2018
1 parent bc17e1a commit fdbe8f1
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,21 @@ jobs:
command: circle-android wait-for-boot
- run:
name: Run UI tests
command: ./gradlew connectedAndroidTest
command: |
./gradlew connectedAndroidTest
ls -al app/build/outputs/
ls -al app/build/outputs/androidTest-results/
- run:
name: Build and check
command: ./gradlew testDebug jacocoTestReport coveralls checkstyle pmd jdepend lintDebug buildDashboard crashlyticsUploadDistributionDebug -PpreDexEnable=false -PversionCode=$CIRCLE_BUILD_NUM -PfabricApiKey=$FABRIC_API_KEY -PfabricApiSecret=$FABRIC_API_SECRET
- store_artifacts:
path: app/build/outputs
destination: outputs
- store_artifacts:
path: app/build/reports
destination: reports
- store_artifacts:
path: app/build/outputs/androidTest-results/*
destination: androidTest-results
- store_test_results:
path: app/build/test-results

0 comments on commit fdbe8f1

Please sign in to comment.