forked from spotify/apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
28 lines (24 loc) · 685 Bytes
/
circle.yml
File metadata and controls
28 lines (24 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
machine:
java:
version: oraclejdk8
dependencies:
# since dependency:resolve fails for multi-module builds
# our best option (that I know of) is to just do a compile
override:
- mvn -Pcoverage -Pmissinglink --fail-never dependency:go-offline clean compile || true
test:
override:
- mvn -Pcoverage -Pmissinglink verify
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
deployment:
codecov:
branch: /.*/
commands:
- bash <(curl -s https://codecov.io/bash)
#deployment:
# production:
# branch: master
# commands:
# - mvn deploy