projectatomic / vagrant-service-manager

To provide the user a CLI to configure the ADB/CDK for different use cases and to provide glue between ADB/CDK and the user's developer environment.
GNU General Public License v2.0
18 stars 16 forks source link

Integrate with Appveyor to build and test on Windows #433

Open hferentschik opened 8 years ago

hferentschik commented 8 years ago

This should pretty much do it:


---
version: "{build}"
branches:
  only:
    - master
install:
  - set PATH=C:\Ruby200\bin;%PATH%
  - ruby --version
  - gem --version
  - gem uninstall -x bundler
  - gem install bundler -v 1.12.5
  - bundler --version
  - bundle install
build_script:
  - bundle exec rake clean install
test_script:
  - bundle exec rake rubocop test TESTOPTS="-v"
artifacts:
  - path: pkg\*.gem