Skip to content

Commit

Permalink
Store POM files on Circle for debugging of #161
Browse files Browse the repository at this point in the history
  • Loading branch information
mannodermaus committed Apr 8, 2019
1 parent d7f9697 commit e6a4eb4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ jobs:
- run:
name: (Plugin) Deploy SNAPSHOTs
command: cd plugin && ./gradlew publishLibraryPublicationToSnapshotRepository --stacktrace --no-daemon
- store_artifacts:
path: plugin/android-junit5/build/publications
destination: plugin/publications/snapshots

deploy_instrumentation_snapshots:
<<: *defaults
Expand All @@ -123,6 +126,12 @@ jobs:
- run:
name: (Instrumentation) Deploy SNAPSHOTs
command: cd instrumentation && ./gradlew publishLibraryPublicationToSnapshotRepository --stacktrace --no-daemon
- store_artifacts:
path: instrumentation/core/build/publications
destination: instrumentation-core/publications/snapshots
- store_artifacts:
path: instrumentation/runner/build/publications
destination: instrumentation-runner/publications/snapshots

deploy_plugin_release:
<<: *defaults
Expand All @@ -134,6 +143,9 @@ jobs:
- run:
name: (Plugin) Deploy
command: cd plugin && ./gradlew generatePomFileForLibraryPublication publish :android-junit5:bintrayUpload --stacktrace --no-daemon
- store_artifacts:
path: plugin/android-junit5/build/publications
destination: plugin/publications/releases

deploy_instrumentation_release:
<<: *defaults
Expand All @@ -145,6 +157,12 @@ jobs:
- run:
name: (Instrumentation) Deploy
command: cd instrumentation && ./gradlew generatePomFileForLibraryPublication publish :api:bintrayUpload :core:bintrayUpload :runner:bintrayUpload --stacktrace --no-daemon
- store_artifacts:
path: instrumentation/core/build/publications
destination: instrumentation-core/publications/releases
- store_artifacts:
path: instrumentation/runner/build/publications
destination: instrumentation-runner/publications/releases

workflows:
version: 2
Expand Down

0 comments on commit e6a4eb4

Please sign in to comment.