We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 524bd10 commit a5ce244Copy full SHA for a5ce244
circle.yml
@@ -87,8 +87,13 @@ jobs:
87
examples:
88
steps:
89
- checkout
90
+ - restore_cache:
91
+ key: examples-maven
92
- run:
- command: mvn -B -f examples/pom.xml test
93
+ name: Publish JARs to Maven Local
94
+ command: ./gradlew --no-daemon publishToMavenLocal
95
+ - run:
96
+ command: mvn -B -f examples/pom.xml -Dtestcontainers.group=org.testcontainers -Dtestcontainers.version=unspecified test
97
98
name: Save test results
99
command: |
@@ -99,6 +104,10 @@ jobs:
104
path: ~/junit
100
105
- store_artifacts:
101
106
107
+ - save_cache:
108
+ paths:
109
+ - ~/.m2
110
102
111
103
112
workflows:
113
version: 2
0 commit comments