diff options
author | Micah <micah@leap.se> | 2016-05-24 10:19:20 -0400 |
---|---|---|
committer | Micah <micah@leap.se> | 2016-05-24 10:19:20 -0400 |
commit | 2728eed07d93fbd0daa8c4d528597cd156bf2546 (patch) | |
tree | ecd7f0b5ec072d762040bce39eaf24c8c3890d25 /.travis.yml |
Squashed 'puppet/modules/openvpn/' content from commit 26d4edc
git-subtree-dir: puppet/modules/openvpn
git-subtree-split: 26d4edc669853a268a65d2cbbfb42c19f1333de7
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..da5c389d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,29 @@ +language: ruby +bundler_args: --without development +script: "bundle exec rake spec SPEC_OPTS='--format documentation'" +rvm: + - 1.8.7 + - 1.9.3 + - 2.0.0 +script: + - "rake lint" + - "rake spec SPEC_OPTS='--format documentation'" +env: + - PUPPET_VERSION="~> 2.7.0" + - PUPPET_VERSION="~> 3.0.0" + - PUPPET_VERSION="~> 3.1.0" + - PUPPET_VERSION="~> 3.2.0" +matrix: + exclude: + - rvm: 1.9.3 + env: PUPPET_VERSION="~> 2.7.0" + - rvm: 2.0.0 + env: PUPPET_VERSION="~> 2.7.0" + - rvm: 2.0.0 + env: PUPPET_VERSION="~> 3.0.0" + - rvm: 2.0.0 + env: PUPPET_VERSION="~> 3.1.0" +notifications: + email: false + on_success: always + on_failure: always |