We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2d4705 commit 254a917Copy full SHA for 254a917
.circleci/config.yml
@@ -0,0 +1,17 @@
1
+version: 2.0
2
+
3
+jobs:
4
+ build:
5
+ docker:
6
+ - image: circleci/openjdk:8-jdk-stretch-browsers
7
+ steps:
8
+ - checkout
9
+ - run: "curl -fsSL https://testspace-client.s3.amazonaws.com/testspace-linux.tgz | sudo tar -zxvf- -C /usr/local/bin"
10
+ - run: "testspace config url samples.testspace.com"
11
+ - run: "mvn clean compile"
12
+ - run: "mvn pmd:pmd"
13
+ - run: "mvn cobertura:cobertura -Dcobertura.report.format=xml"
14
+ - run:
15
+ name: Send reports to testspace
16
+ command: "testspace target/pmd.xml [Tests]target/surefire-reports/TEST*.xml target/site/cobertura/coverage.xml"
17
+ when: always
circle.yml
0 commit comments