summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2015-12-05 04:17:05 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2015-12-05 04:17:05 +0000
commit5b84d0d8039a71cf1e17be91bd885d0f2f6c5623 (patch)
treed6cf55226326c125afe033b5e43d1f3f21b22a31
parent741a967a4677a2399207bb329a42839d74d4247c (diff)
downloadredmine-5b84d0d8039a71cf1e17be91bd885d0f2f6c5623.tar.gz
redmine-5b84d0d8039a71cf1e17be91bd885d0f2f6c5623.zip
3.0-stable: backport appveyor.yml
git-svn-id: http://svn.redmine.org/redmine/branches/3.0-stable@14925 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--appveyor.yml36
1 files changed, 36 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 000000000..b0ac65c5b
--- /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
+ - git --version
+ - hg --version
+
+build: off
+
+test_script:
+ - bundle install --without rmagick
+ - set SCMS=mercurial
+ - 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"
+ - ruby_version: "22"
+ - ruby_version: "22-x64"