Skip to content
This repository has been archived by the owner on Jul 12, 2023. It is now read-only.

Commit

Permalink
use circleci 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Norberg committed May 1, 2017
1 parent 33522c9 commit 558e394
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 18 deletions.
24 changes: 24 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: 2
jobs:
build:
working_directory: ~/styx
docker:
- image: maven:3.5.0-jdk-8
steps:
- checkout
- restore_cache:
key: v1-deps-{{ checksum "pom.xml" }}
- run: mvn dependency:go-offline compile
- save_cache:
key: v1-deps-{{ checksum "pom.xml" }}
paths:
- ~/.m2
- run: mvn verify coveralls:report -Dcoveralls.token=${COVERALLS_TOKEN}
- run: |
mkdir test-reports
find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} test-reports/ \;
- store_test_results:
path: test-reports/
- store_artifacts:
path: report/target/site/jacoco-aggregate/
destination: jacoco-aggregate
18 changes: 0 additions & 18 deletions circle.yml

This file was deleted.

0 comments on commit 558e394

Please sign in to comment.