forked from voxpupuli/puppet-zypprepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
46 lines (46 loc) · 1.72 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
---
sudo: false
dist: trusty
language: ruby
cache: bundler
before_install:
- bundle -v
- rm Gemfile.lock || true
- gem update --system
- gem update bundler
- gem --version
- bundle -v
script:
- 'bundle exec rake $CHECK'
matrix:
fast_finish: true
include:
- rvm: 2.1.9
bundler_args: --without system_tests development
env: PUPPET_VERSION="~> 4.0" CHECK=test
- rvm: 2.4.1
bundler_args: --without system_tests development
env: PUPPET_VERSION="~> 5.0" CHECK=test
- rvm: 2.4.1
bundler_args: --without system_tests development
env: PUPPET_VERSION="~> 5.0" CHECK=rubocop
- rvm: 2.4.1
bundler_args: --without system_tests development
env: PUPPET_VERSION="~> 5.0" CHECK=build DEPLOY_TO_FORGE=yes
branches:
only:
- master
- /^v\d/
notifications:
email: false
deploy:
provider: puppetforge
user: puppet
password:
secure: "de1dsu+QuuYxTdLeB+ahVUajihy9QYFGAfJ7y33b6ewnQfTZUeeR6D4NewZ4pY5vD0Hw4mi4xIx9RowOBn/dvnbf7gMZTV4Judg4oTG4Q41If+W7Z0nSwb/p/nQrmErtudDa3mBgyUgO8v4TMRJmHEFumm7tVw3QGLILgxW1sPeu05vPbXmun20YOZ1jnBguSrC+QmeNSohff/Bjya9gUKDvfYfBEznAcGScAVsuoT40QpmQnNYs1EPtq+8q9FasQFYTR1E3VbDcxO5u6OqrHVllMqpxcc9cbI3C321ZNVJwLSM4J9bEQJQwDl9U+kJ4bss994QR27zrPU9g7r/P2zKaHb3rEMreENAGsFFN/Z6lpUdxBqE6pYG9A4U8i0cpvl+BRbZSCUFdhw67UETZgklvFXn4u0VL9TRzsmvKSFN3T1SGr7B6uM+zfMt4k+lsbFpDzwbs/mr56RQZe68ATdPGmW/VbH+BuGtF661Z1yUnplZ91ZslkeJfzTuonIRjYimy0DLP65rq2/2B2Adxg80W8XO2JmJSCk7Vp5r8Wj5/UdfPoyp57ZKc2pBIWh8Av9gsKk+SJQ5nzrq4r4Wqfhz05nPO6g8HkhjVA0iNEnlOeqBoiskSn2SY06piL4irH5eKegDdknsHDMYGBl8+UonNIajhRpqYuokHiffo4yc="
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"