mirror of
https://github.com/krislamo/puppet-acme_vault
synced 2024-11-09 20:30:36 +00:00
39 lines
703 B
YAML
39 lines
703 B
YAML
|
---
|
||
|
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.3.1
|
||
|
bundler_args: --without system_tests
|
||
|
env: PUPPET_GEM_VERSION="~> 4.0"
|
||
|
- rvm: 2.1.7
|
||
|
bundler_args: --without system_tests
|
||
|
env: PUPPET_GEM_VERSION="~> 4.0"
|
||
|
branches:
|
||
|
only:
|
||
|
- master
|
||
|
- /^v\d/
|
||
|
notifications:
|
||
|
email: false
|
||
|
deploy:
|
||
|
provider: puppetforge
|
||
|
user: puppet
|
||
|
password:
|
||
|
secure: ""
|
||
|
on:
|
||
|
tags: true
|
||
|
all_branches: true
|
||
|
condition: "$DEPLOY_TO_FORGE = yes"
|