diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2015-10-29 12:21:11 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2015-10-29 12:21:11 +0000 |
commit | 6d8635aed9fcdcb64ac7636e00ea956bebf2074f (patch) | |
tree | 2fd865581391e4153984ef30fe45610864516c76 | |
parent | 411d3cb43e9a8687eb88201533d66584476a9af8 (diff) | |
download | redmine-6d8635aed9fcdcb64ac7636e00ea956bebf2074f.tar.gz redmine-6d8635aed9fcdcb64ac7636e00ea956bebf2074f.zip |
add appveyor.yml
git-svn-id: http://svn.redmine.org/redmine/trunk@14756 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | appveyor.yml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..993e7e457 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,36 @@ +# Redmine runs tests on own continuous integration server. +# http://www.redmine.org/projects/redmine/wiki/Continuous_integration +# You can also run tests on your environment. + +install: + - SET PATH=C:\Ruby%ruby_version%\bin;%PATH% + - ruby --version + - gem --version + +build: off + +test_script: + - bundle install --without mysql2 postgres rmagick + - set SCMS=git + - set RUN_ON_NOT_OFFICIAL= + - set RUBY_VER=1.9 + - set BRANCH=trunk + - bundle exec rake config/database.yml + - bundle install + - bundle exec rake ci:setup + - bundle exec rake test + +environment: + global: + RAILS_ENV: test + DATABASE_ADAPTER: sqlite3 + matrix: + - ruby_version: "193" + - ruby_version: "200" + - ruby_version: "200-x64" + - ruby_version: "21" + - ruby_version: "21-x64" + # Nokogori does not work on Windows Ruby 2.2 + # https://github.com/sparklemotion/nokogiri/issues/1256 + # - ruby_version: "22" + # - ruby_version: "22-x64" |