-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
47 lines (47 loc) · 1.85 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: bionic
language: ruby
cache: bundler
before_install:
- yes | gem update --system
- 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
webhooks: https://voxpupu.li/incoming/travis
irc:
on_success: always
on_failure: always
channels:
- "chat.freenode.org#voxpupuli-notifications"
deploy:
provider: puppetforge
user: puppet
password:
secure: "FaJ+wmdo9lXhwU6GEZb9TIH0Z+q9Xb1AlxHK+S6cIsN59RF8C3Eiv5ss0vPULrfZ8RpBMJs+tafJAOANzrqtN8O7bP31tHYw6Q6mlWGDn5fC/xi89aZo41NIKURf9ocRS5NHLQzn2bHO6cX/4ggcK+wBcMqSDcRTafpjlEVTFBEXRInPlHRl6XW1VogHxDv/nP9mYuV/iOijwjN33nZkmJuvkHHIvvRJRYTz0M/5XVYmNCQmkj4XFla1DGmT+FzEm5kZ9e5rNsheZfpmO8WGo9OENrRS2nw8djNnk0yNt+a4plgHqyo/nWqi6FllJctIwOQVx0IeljdhDIH3fPShjg5drTzQ3zn3Ad/v7XAAA9u9eDhscfRzfQMWs5vgCN6y9U6as84Li4vWN94gR0OWMKGlnsqW2EjqIn4dm1w3bP9eKCk+JY2fUIX//QVVbmqYIF6a7793qVZyjcDPTKzPj6dj9PzS+BaQJrsvYeCa/ADO9spD4vuoebUx3K5HTIoRvorjW6fG0BQsjlAEmjgH4qVGQaeOO/6/2U9qjRpnagG4cr+tJ/jNpmivt7gDlk7N/AdFdeBA66hjkTuzXEl7tDGTWshT9HimwIYFwa2NHeETi2yV10aEX0T8KGxW+Vmr4+IEvByAIq8NqvGEKqP3H9c2DPob9yJOU2kEO2mR6wM="
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"