diff options
author | Ewoud Kohl van Wijngaarden <e.kohlvanwijngaarden@oxilion.nl> | 2013-07-02 19:22:35 +0200 |
---|---|---|
committer | Ewoud Kohl van Wijngaarden <e.kohlvanwijngaarden@oxilion.nl> | 2013-07-02 19:24:27 +0200 |
commit | 42488b04b47ec3fd87f1d45ec3fa90b588545ca1 (patch) | |
tree | c6776e08e8e7a5398f84a0563d5a229dd8dc6171 /.travis.yml | |
parent | aaf55c9ebfa0e34f63b2ca3c2b660e1d164026dd (diff) |
Add basic testing infrastructure
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..3e66a86 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +rvm: + - 1.8.7 + - 1.9.3 + - 2.0.0 +env: + - PUPPET_VERSION=2.6.0 + - PUPPET_VERSION=2.7.0 + - PUPPET_VERSION=3.2.0 +matrix: + exclude: + # No support for Ruby 1.9 before Puppet 2.7 + - rvm: 1.9.3 + env: PUPPET_VERSION=2.6.0 + # No support for Ruby 2.0 before Puppet 3.2 + - rvm: 2.0.0 + env: PUPPET_VERSION=2.6.0 + - rvm: 2.0.0 + env: PUPPET_VERSION=2.7.0 |