Skip to content

Commit

Permalink
(maint) add AppVeyor support
Browse files Browse the repository at this point in the history
  • Loading branch information
Iristyle committed Jul 6, 2015
1 parent 806c3f6 commit a1f4f33
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions appveyor.yml
@@ -0,0 +1,46 @@
version: 1.1.x.{build}
skip_commits:
message: /(^\(?doc\)?.*|.*[A|a]cceptance [T|t]est.*)/
clone_depth: 10
init:
- SET
- 'mkdir C:\ProgramData\PuppetLabs\code && exit 0'
- 'mkdir C:\ProgramData\PuppetLabs\facter && exit 0'
- 'mkdir C:\ProgramData\PuppetLabs\hiera && exit 0'
- 'mkdir C:\ProgramData\PuppetLabs\puppet\var && exit 0'
environment:
matrix:
- PUPPET_GEM_VERSION: 3.4.3
RUBY_VER: 193
- PUPPET_GEM_VERSION: 3.7.5
RUBY_VER: 193
- PUPPET_GEM_VERSION: 3.7.5
RUBY_VER: 200-x64
- PUPPET_GEM_VERSION: 3.8.1
RUBY_VER: 193
- PUPPET_GEM_VERSION: 3.8.1
RUBY_VER: 200-x64
- PUPPET_GEM_VERSION: 4.0.0
RUBY_VER: 21
- PUPPET_GEM_VERSION: 4.0.0
RUBY_VER: 21-x64
matrix:
fast_finish: true
install:
- SET PATH=C:\Ruby%RUBY_VER%\bin;%PATH%
- gem install bundler --quiet --no-ri --no-rdoc
- bundle install --jobs 4 --retry 2 --without development system_tests
- type Gemfile.lock
build: off
test_script:
- bundle exec puppet -V
- ruby -v
- bundle exec rspec spec/unit -fd -b
notifications:
- provider: Email
to:
- nobody@nowhere.com
on_build_success: false
on_build_failure: false
on_build_status_changed: false

0 comments on commit a1f4f33

Please sign in to comment.