Skip to content
Merged
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
11 changes: 10 additions & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,13 @@ jobs:
examples:
steps:
- checkout
- restore_cache:
key: examples-maven
- run:
command: mvn -B -f examples/pom.xml test
name: Publish JARs to Maven Local
command: ./gradlew --no-daemon publishToMavenLocal
- run:
command: mvn -B -f examples/pom.xml -Dtestcontainers.group=org.testcontainers -Dtestcontainers.version=unspecified test
- run:
name: Save test results
command: |
Expand All @@ -97,6 +102,10 @@ jobs:
path: ~/junit
- store_artifacts:
path: ~/junit
- save_cache:
paths:
- ~/.m2
key: examples-maven

workflows:
version: 2
Expand Down