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 b2d4705 commit 8056ad0Copy full SHA for 8056ad0
.circleci/config.yml
@@ -0,0 +1,18 @@
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: "mkdir -p $HOME/bin"
10
+ - run: "curl -fsSL https://testspace-client.s3.amazonaws.com/testspace-linux.tgz | tar -zxvf- -C $HOME/bin"
11
+ - run: "testspace config url samples.testspace.com"
12
+ - run: "mvn clean compile"
13
+ - run: "mvn pmd:pmd"
14
+ - run: "mvn cobertura:cobertura -Dcobertura.report.format=xml"
15
+ - run:
16
+ name: Send reports to testspace
17
+ command: "testspace target/pmd.xml [Tests]target/surefire-reports/TEST*.xml target/site/cobertura/coverage.xml"
18
+ when: always
circle.yml
0 commit comments