forked from olevole/puppet-telegraf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
47 lines (47 loc) · 1.82 KB
/
.travis.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
38
39
40
41
42
43
44
45
46
47
---
dist: xenial
language: ruby
cache: bundler
before_install:
- gem update --system
- gem update bundler
- bundle --version
script:
- 'bundle exec rake $CHECK'
matrix:
fast_finish: true
include:
- rvm: 2.4.4
bundler_args: --without system_tests development release
env: PUPPET_VERSION="~> 5.0" CHECK=test
- rvm: 2.5.3
bundler_args: --without system_tests development release
env: PUPPET_VERSION="~> 6.0" CHECK=test_with_coveralls
- rvm: 2.5.3
bundler_args: --without system_tests development release
env: PUPPET_VERSION="~> 6.0" CHECK=rubocop
- rvm: 2.4.4
bundler_args: --without system_tests development release
env: PUPPET_VERSION="~> 5.0" CHECK=build DEPLOY_TO_FORGE=yes
branches:
only:
- master
- /^v\d/
notifications:
email: false
irc:
on_success: always
on_failure: always
channels:
- "chat.freenode.org#voxpupuli-notifications"
deploy:
provider: puppetforge
user: puppet
password:
secure: "LUBdRnwDBx3H9ZfmPK2Lj7C4jGNh91mG3qwEmpq0sIz3xzmmcbUz/LS0efVxId/A5TDn34NcHCB4qrs4Kq0Ayf6lonIvFUMy7xsErLP/qTR4rdjR0f/mzeAjyf+uyh9/od7qRfMC5Bu4zuqLacA45g0CdkfYhuwLsI0fWrml6oSydloeOO38G3LxdSzu+WRR4Qi1qJ6uUYygiDpWh6Fhx88Brmhzpi0i9zz2wOpXccgP88tO6u1zXRTt9ypnlrQRIBg8IMmNkHB+cSb06yUgOQQLTM69/6C+rlSVAPtBwpa40iaOGDF9yn3Sl2G6Qwo1T/HEGPaW0DfPfyP0zNlsnc2lbcsWwpPr7yKmAPEgbH/7WKISn7BZn45yDLKxtBfqcWSIRoFqIEhfsdKzKvZKQVW1NYiUSLCbZ6ipxE7t0YnFqDV1W+AmWFFK+dDkFgYY9L/XD2xuDOepO3iG0P7im8/LJxvqIiyzOhV+M2a5rC9Ux51maChYV/o5YYx4Jou3MS9sJGfPxMhfNs0ZPLv10klwDAhQy/NAztR/MQGgjxbVPG1QZBupRuTCswGFZ0EKMeEH2hrTpgrcjtporoVIBBKZPHGY2lbqF+xeuQjDLcJynsx8bWNgizXrhU5hBMUh/AjPG4qvS9DoLbbpSd6PTwrG4QZkWOPORI47ojiTCUQ="
on:
tags: true
# all_branches is required to use tags
all_branches: true
# Only publish the build marked with "DEPLOY_TO_FORGE"
condition: "$DEPLOY_TO_FORGE = yes"