Skip to content

Commit e6a4eb4

Browse files
committed
Store POM files on Circle for debugging of #161
1 parent d7f9697 commit e6a4eb4

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.circleci/config.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,9 @@ jobs:
112112
- run:
113113
name: (Plugin) Deploy SNAPSHOTs
114114
command: cd plugin && ./gradlew publishLibraryPublicationToSnapshotRepository --stacktrace --no-daemon
115+
- store_artifacts:
116+
path: plugin/android-junit5/build/publications
117+
destination: plugin/publications/snapshots
115118

116119
deploy_instrumentation_snapshots:
117120
<<: *defaults
@@ -123,6 +126,12 @@ jobs:
123126
- run:
124127
name: (Instrumentation) Deploy SNAPSHOTs
125128
command: cd instrumentation && ./gradlew publishLibraryPublicationToSnapshotRepository --stacktrace --no-daemon
129+
- store_artifacts:
130+
path: instrumentation/core/build/publications
131+
destination: instrumentation-core/publications/snapshots
132+
- store_artifacts:
133+
path: instrumentation/runner/build/publications
134+
destination: instrumentation-runner/publications/snapshots
126135

127136
deploy_plugin_release:
128137
<<: *defaults
@@ -134,6 +143,9 @@ jobs:
134143
- run:
135144
name: (Plugin) Deploy
136145
command: cd plugin && ./gradlew generatePomFileForLibraryPublication publish :android-junit5:bintrayUpload --stacktrace --no-daemon
146+
- store_artifacts:
147+
path: plugin/android-junit5/build/publications
148+
destination: plugin/publications/releases
137149

138150
deploy_instrumentation_release:
139151
<<: *defaults
@@ -145,6 +157,12 @@ jobs:
145157
- run:
146158
name: (Instrumentation) Deploy
147159
command: cd instrumentation && ./gradlew generatePomFileForLibraryPublication publish :api:bintrayUpload :core:bintrayUpload :runner:bintrayUpload --stacktrace --no-daemon
160+
- store_artifacts:
161+
path: instrumentation/core/build/publications
162+
destination: instrumentation-core/publications/releases
163+
- store_artifacts:
164+
path: instrumentation/runner/build/publications
165+
destination: instrumentation-runner/publications/releases
148166

149167
workflows:
150168
version: 2

0 commit comments

Comments
 (0)