Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.

Commit 4b744f8

Browse files
authored
Merge pull request #62 from launchdarkly/eb/ch15552/circle2
migrate to Circle 2
2 parents 87a9aaa + 9d54076 commit 4b744f8

File tree

2 files changed

+24
-16
lines changed

2 files changed

+24
-16
lines changed

.circleci/config.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
version: 2
2+
jobs:
3+
build:
4+
branches:
5+
ignore:
6+
- gh-pages
7+
docker:
8+
- image: circleci/java
9+
- image: redis
10+
steps:
11+
- checkout
12+
- run: cp gradle.properties.example gradle.properties
13+
- run: ./gradlew dependencies
14+
- run: ./gradlew test
15+
- run:
16+
name: Save test results
17+
command: |
18+
mkdir -p ~/junit/
19+
find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} ~/junit/ \;
20+
when: always
21+
- store_test_results:
22+
path: ~/junit
23+
- store_artifacts:
24+
path: ~/junit

circle.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)