Skip to content

Commit

Permalink
Use system Ruby for the Appveyor build
Browse files Browse the repository at this point in the history
  • Loading branch information
hartmantis committed Jul 20, 2016
1 parent 8629ee3 commit 601744d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
language: objective-c
osx_image: xcode7.3
rvm: 2.3.1
cache: bundler
cache: vendor/bundle

branches:
only:
- master

install:
- bundle install
- bundle install --path vendor/bundle --without=development integration

before_script:
- cp .kitchen.travis.yml .kitchen.local.yml
Expand Down
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ branches:
- master

cache:
- '%TEMP%\verifier\gems'
- vendor/bundle
- %TEMP%/verifier/gems

install:
- cinst chefdk
- SET PATH=C:\opscode\chefdk\bin;%PATH%
- set PATH=C:\Ruby23\bin;%PATH%
- bundle install --path vendor/bundle --without development integration

build_script:
- chef exec bundle install --without=development integration
- copy .kitchen.appveyor.yml .kitchen.local.yml

test_script:
- chef exec kitchen test
- bundle exec kitchen test

0 comments on commit 601744d

Please sign in to comment.