-
Notifications
You must be signed in to change notification settings - Fork 6
/
circle.yml
37 lines (37 loc) · 974 Bytes
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
dependencies:
bundler:
without: [development]
override:
- bundle install --without acceptance development:
timeout: 240
environment:
PUPPET_GEM_VERSION: '~> 4.0'
STRICT_VARIABLES: yes
post:
- rvm cleanup all
deployment:
master:
branch: master
commands:
- git config --global user.email "[email protected]"
- git config --global user.name "CircleCI"
- bundle exec rake strings:gh_pages:update
- bundle exec rake deploy
machine:
environment:
PUPPET_GEM_VERSION: '~> 4.0'
STRICT_VARIABLES: yes
ruby:
version: 2.1.6
notify:
webhooks:
-
url: "https://webhooks.gitter.im/e/63e7b124d98407e540f2"
test:
override:
- bundle exec rake metadata_lint
- bundle exec rake rubocop
- bundle exec rake lint
- bundle exec rake validate
- bundle exec rake spec SPEC_OPTS="--format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/puppet.xml"