This repository has been archived by the owner on Jul 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
52 lines (52 loc) · 1.54 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
48
49
50
51
52
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.2.7
bundler_args: "--without system_tests development"
env: PUPPET_VERSION="~> 4.0" CHECK=test
- rvm: 2.3.4
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="~> 4.0" CHECK=test
- rvm: 2.4.1
bundler_args: "--without system_tests development"
env: PUPPET_VERSION="~> 4.0" CHECK=rubocop
- rvm: 2.4.1
bundler_args: "--without system_tests development"
env: PUPPET_VERSION="~> 4.0" CHECK=build DEPLOY_TO_FORGE=yes
branches:
only:
- master
- "/^v\\d/"
notifications:
email:
slack:
secure: XbJmL6qoSxqVoLZjEgw6id02Yy5q7+vw+ORM8Erp4bJSHwIXnIPpgUUYaSH5cWZ2/UQfeSOH5zf7n8x5KNekYTYMskpGZaPKSy0o5rxxlrsbUDUgmDsYJ2b5sA16bFtgjfnOBaecAscg6HgRVhdyXIx5Vbl4soFPvZuvKMdKaxw=
deploy:
provider: puppetforge
user: adamcrews
password:
secure: LSglzO0+5oxLRQTjkd4qjCer0SzJozZLHDb8CrjRARYkEy7zkI4IgYXjGXGUbSvdu6xVWJBGz5n4BXt7M3EhiIT3xjBXIc1Qo13IVrgjCxN72pB+61TjofpmCLV+DPB5ZkubEfFmVq95jx09n7L/5oYFbzPPuF6OalnvHJej7V8=
on:
tags: true
all_branches: true
condition: "$DEPLOY_TO_FORGE = yes"