You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

appveyor.yml 863B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Redmine runs tests on own continuous integration server.
  2. # http://www.redmine.org/projects/redmine/wiki/Continuous_integration
  3. # You can also run tests on your environment.
  4. install:
  5. - SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
  6. - ruby --version
  7. - gem --version
  8. - git --version
  9. - hg --version
  10. - chcp
  11. build: off
  12. test_script:
  13. - bundle install --without minimagick
  14. - set SCMS=mercurial
  15. - set RUN_ON_NOT_OFFICIAL=
  16. - set RUBY_VER=1.9
  17. - set BRANCH=trunk
  18. - bundle exec rake config/database.yml
  19. - bundle install
  20. - bundle exec rake ci:setup
  21. - bundle exec rake test
  22. environment:
  23. global:
  24. RAILS_ENV: test
  25. DATABASE_ADAPTER: sqlite3
  26. matrix:
  27. - ruby_version: "193"
  28. - ruby_version: "200"
  29. - ruby_version: "200-x64"
  30. - ruby_version: "21"
  31. - ruby_version: "21-x64"
  32. - ruby_version: "22"
  33. - ruby_version: "22-x64"