forked from zendesk/ruby-kafka
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
21 lines (19 loc) · 659 Bytes
/
circle.yml
File metadata and controls
21 lines (19 loc) · 659 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
machine:
pre:
- curl -sSL https://s3.amazonaws.com/circle-downloads/install-circleci-docker.sh | bash -s -- 1.10.0
services:
- docker
environment:
LOG_LEVEL: DEBUG
dependencies:
pre:
- docker -v
- docker pull ches/kafka:0.9.0.1
- docker pull jplock/zookeeper:3.4.6
- gem install bundler -v 1.9.5
test:
override:
- bundle exec rspec -r rspec_junit_formatter --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/unit.xml
- bundle exec rspec -r rspec_junit_formatter --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/functional.xml --tag functional
post:
- cp *.log $CIRCLE_ARTIFACTS/ || true