Skip to content

Commit

Permalink
GHI-#6 Add a Circle CI configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticicestudio committed Oct 30, 2016
1 parent f09e8cf commit 21059d1
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# title Circle CI Build Configuration +
# project nord-java +
# version +
# repository https://github.com/arcticicestudio/nord-java +
# author Arctic Ice Studio +
# email [email protected] +
# copyright Copyright (C) 2016 +
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#
# [References]
# Circle CI
# (https://circleci.com/docs)
machine:
java:
version: oraclejdk8
general:
artifacts:
- ./target/*.jar
test:
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
override:
- mvn clean verify assembly:single -P code-coverage,assemble
- find . -type f -regextype posix-egrep -regex ".*/target/(.*asc|.*jar|.*md5|.*pom|.*sha1|.*tar.gz|.*zip)" -exec cp {} $CIRCLE_ARTIFACTS \;

0 comments on commit 21059d1

Please sign in to comment.