Browse Source

Merge branch 'ci', enabling CI services.

tags/r1.9.0
Florian Zschocke 7 years ago
parent
commit
7fd5776cbb
2 changed files with 24 additions and 0 deletions
  1. 2
    0
      .travis.yml
  2. 22
    0
      circle.yml

+ 2
- 0
.travis.yml View File

@@ -0,0 +1,2 @@
language: java


+ 22
- 0
circle.yml View File

@@ -0,0 +1,22 @@
machine:
java:
version: openjdk7

compile:
pre:
- java -version
- javac -version
override:
- ant

test:
override:
- ant test
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- cp -a build/tests/TEST-*.xml $CIRCLE_TEST_REPORTS/junit/

general:
artifacts:
- "build/target/reports"


Loading…
Cancel
Save