Skip to content

Commit

Permalink
Add CircleCI and AppVeyor configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
arteam committed Jan 30, 2017
1 parent 64b942c commit 247b16f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions appveyor.yml
@@ -0,0 +1,3 @@
test_script:
- mvn package
build: off
18 changes: 18 additions & 0 deletions circle.yml
@@ -0,0 +1,18 @@
machine:
timezone: UTC
java:
version: oraclejdk8
environment:
_JAVA_OPTIONS: '-Xms512m -Xmx2g'
dependencies:
override:
- mvn dependency:go-offline --fail-never
compile:
override:
- mvn compile
test:
override:
- mvn test
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;

0 comments on commit 247b16f

Please sign in to comment.